Skip to content

v2.3.1

Latest
Compare
Choose a tag to compare
@neo4j-team-graphql neo4j-team-graphql released this 05 Feb 14:57
· 3 commits to main since this release
b0ffc95

Patch Changes

  • #497 e544b91 Thanks @angrykoala! - Support for assigning maps and variables directly to variables with .set to override all properties of a node:

    new Cypher.Match(new Cypher.Pattern(movie)).set([
        movie,
        new Cypher.Map({
            title: new Cypher.Param("The Matrix"),
            year: new Cypher.Param(1999),
        }),
    ]);
    MATCH (this0)
    SET
        this0 = { title: $param0, year: $param1 }