Skip to content

v2.5.2

Choose a tag to compare

@neo4j-team-graphql neo4j-team-graphql released this 22 Apr 14:47
· 155 commits to main since this release
bce377d

Patch Changes

  • #530 35fdd7e Thanks @angrykoala! - Fix types to support paths on chained .match and .optionalMatch:

    const path = new Cypher.PathVariable();
    const query = new Cypher.Match(new Cypher.Node()).match(pattern.assignTo(path)).return(path);
    MATCH (this0)
    MATCH p3 = (this0)-[this1:ACTED_IN]->(this2)
    RETURN p3