Skip to content

v2.8.0

Latest
Compare
Choose a tag to compare
@neo4j-team-graphql neo4j-team-graphql released this 19 Aug 15:37
· 2 commits to main since this release
131c372

Minor Changes

  • #559 137a908 Thanks @angrykoala! - Support for dynamic labels in patterns

    const query = new Cypher.Match(
        new Cypher.Pattern(new Cypher.Node(), {
            labels: new Cypher.Param("Movie"),
        })
    );
    MATCH (this0:$($param0))
  • #559 0223ca9 Thanks @angrykoala! - Add support for dynamic types in patterns

    const query = new Cypher.Match(
        new Cypher.Pattern(new Cypher.Node())
            .related({
                type: new Cypher.Param("ACTED_IN"),
            })
            .to()
    );
    MATCH (this0)-[:$($param1)]->()

Patch Changes

  • #561 83774e8 Thanks @angrykoala! - Deprecates the option labelOperator, this option only exists for compatibility with Cypher 4 and is no longer relevant for Cypher 5 or 25