Skip to content

Commit

Permalink
Merge pull request #550 from gem-neo4j/fix-exists-aggregation-test
Browse files Browse the repository at this point in the history
Update to use n as the grouping key, instead of m in Exists Aggregation Acceptance test
  • Loading branch information
gem-neo4j authored Nov 10, 2022
2 parents bc6abd7 + e3267de commit bd17271
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ Feature: ExistentialSubquery2 - Full existential subquery
"""
MATCH (n) WHERE exists {
MATCH (n)-->(m)
WITH m, count(*) AS numConnections
WITH n, count(*) AS numConnections
WHERE numConnections = 3
RETURN true
}
Expand Down

0 comments on commit bd17271

Please sign in to comment.