·
72 commits
to main
since this release
Immutable
release. Only release title and notes can be modified.
Minor Changes
-
#634
adbda8fThanks @angrykoala! - Add support for Simple subqueries, using only a Pattern inCountandExists:const countExpr = new Cypher.Count(new Cypher.Pattern(new Cypher.Node(), { labels: ["Movie"] })); const match = new Cypher.Match(new Cypher.Pattern(new Cypher.Node())) .where(Cypher.gt(countExpr, new Cypher.Literal(10))) .return("*");
MATCH (this0) WHERE COUNT { (this1:Movie) } > 10 RETURN *