Skip to content

v1.22.0

Compare
Choose a tag to compare
@neo4j-team-graphql neo4j-team-graphql released this 24 Oct 13:52
· 147 commits to main since this release
9081a57

Minor Changes

  • #421 b9b75cd Thanks @angrykoala! - Add support for OPTIONAL CALL:

    new Cypher.OptionalCall(subquery);

    Alternatively

    new Cypher.Call(subquery).optional();

    To generate the following Cypher:

    OPTIONAL CALL {
        // Subquery
    }

Patch Changes

  • #420 77d8795 Thanks @angrykoala! - Add support for OFFSET as an alias for SKIP:

    const matchQuery = new Cypher.Return(movieNode).orderBy([movieNode.property("age")]).offset(new Cypher.Param(10));
    RETURN this0
    ORDER BY this0.age ASC
    OFFSET $param0
  • #425 e899ceb Thanks @angrykoala! - Add support for order by, skip and limit chaining after the following clauses:

    • Call
    • Merge
    • Create
    • Match
    • Unwind
    • Procedures