plexus-engine 0.3.4

Engine integration traits for consuming Plexus plans
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Feature: Read-only core scenarios

Scenario: feature-match-expand-filter
When executing query:
"""
MATCH (n:Person)-[:KNOWS]->(m:Person) WHERE m.age > 30 RETURN n.name AS name ORDER BY name ASC
"""
Then result rows:
| string:Alice |

Scenario: feature-optional-match-null-projection
When executing query:
"""
OPTIONAL MATCH (n:Person)-[:WORKS_AT]->(c:Company) RETURN c.name AS name ORDER BY name ASC
"""
Then result rows:
| null |
| string:Acme |