Feature: deterministic conformance authoring patterns
@readonly @match
Scenario: ordered assertion with explicit order by
Given a fixture graph
When executing query:
"""
MATCH (n:Person) RETURN n.name ORDER BY n.name
"""
Then the result should be, in order:
| Alice |
| Bob |
And no side effects
@readonly @match
Scenario: any-order assertion for unordered projection
Given a fixture graph
When executing query:
"""
MATCH (n:Person) RETURN n.name
"""
Then the result should be, in any order:
| Alice |
| Bob |
And no side effects