Skip to content

v2.3.0

Latest
Compare
Choose a tag to compare
@neo4j-team-graphql neo4j-team-graphql released this 23 Jan 15:01
08b9440

Minor Changes

  • #494 a775b64 Thanks @angrykoala! - Add cypherVersion parameter in build:

    const { cypher } = matchQuery.build({
        cypherVersion: "5",
    });

    This prepends the Cypher version to the query:

    CYPHER 5
    MATCH (this0:Movie)
    RETURN this0

Patch Changes

  • #493 69ecd03 Thanks @angrykoala! - Export the following types: When, IsType, ListType, BooleanOp MathOp. These types were returned by some functions or methods, but the types themselves were not exported.