v2.2.0
·
22 commits
to main
since this release
Minor Changes
-
#477
8723c78
Thanks @angrykoala! - Add support for trim expressions intrim
:Cypher.trim("BOTH", new Cypher.Literal("x"), new Cypher.Literal("xxxhelloxxx"));
trim(BOTH "x" FROM "xxxhelloxxx")
Patch Changes
-
#482
85ff6e0
Thanks @angrykoala! - DeprecateForeach
extra constructor parameters in favor of methodsin
anddo
:Before:
new Cypher.Foreach(variable, list, createMovie);
Now:
new Cypher.Foreach(variable).in(list).do(createMovie);
-
#482
85ff6e0
Thanks @angrykoala! - Add support for chainingFOREACH
afterMATCH
with.foreach