-
-
Notifications
You must be signed in to change notification settings - Fork 90
Closed
Milestone
Description
On ArcadeDB Version: 26.2.1.2. With this query:
MATCH (n:Person)-[r:spouseOf]->(m:Person)
WHERE n.nameFamily='Smith' AND n.nameGiven='Joseph'
RETURN n, r.marriageDate, r.divorceDate, m
-- Open Cypher it returns: the results in this order: r.marriageDate, r.divorceDate, n, m
-- old Cypher returns in this order: n, r.marriageDate, r.divorceDate, m
Open Cypher should return it in the same order as the original cypher query engine.
Reactions are currently unavailable