Skip to content

v2.2.0

Compare
Choose a tag to compare
@neo4j-team-graphql neo4j-team-graphql released this 13 Jan 09:53
· 22 commits to main since this release
d22f55a

Minor Changes

  • #477 8723c78 Thanks @angrykoala! - Add support for trim expressions in trim:

    Cypher.trim("BOTH", new Cypher.Literal("x"), new Cypher.Literal("xxxhelloxxx"));
    trim(BOTH "x" FROM "xxxhelloxxx")

Patch Changes

  • #482 85ff6e0 Thanks @angrykoala! - Deprecate Foreach extra constructor parameters in favor of methods in and do:

    Before:

    new Cypher.Foreach(variable, list, createMovie);

    Now:

    new Cypher.Foreach(variable).in(list).do(createMovie);
  • #482 85ff6e0 Thanks @angrykoala! - Add support for chaining FOREACH after MATCH with .foreach