cypher-builder icon indicating copy to clipboard operation
cypher-builder copied to clipboard

Release new version - changesets

Open neo4j-team-graphql opened this issue 1 year ago • 1 comments

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@neo4j/[email protected]

Minor Changes

  • #413 0f2dfe6 Thanks @angrykoala! - Add support for SHORTEST keyword in match and its variations:

    • .shortest(k)
    • .shortestGroups(k)
    • .allShortest
    • .any

    For example:

    new Cypher.Match(pattern).shortest(2).return(node);
    
    MATCH ALL SHORTEST (this0:Movie)-[this1]->(this2:Person)
    RETURN this0
    

neo4j-team-graphql avatar Sep 19 '24 08:09 neo4j-team-graphql