Skip to content

v2.11.0

Latest

Choose a tag to compare

@neo4j-team-graphql neo4j-team-graphql released this 25 Nov 15:00
· 72 commits to main since this release
Immutable release. Only release title and notes can be modified.
7049275

Minor Changes

  • #634 adbda8f Thanks @angrykoala! - Add support for Simple subqueries, using only a Pattern in Count and Exists:

    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 *