Skip to content
Compare
Choose a tag to compare
@neo4j-team-graphql neo4j-team-graphql released this 18 Feb 09:50
· 2 commits to dev since this release
e35d589

Patch Changes

  • #5952 4e14680 Thanks @angrykoala! - Add addVersionPrefix to cypherQueryOptions in context to add a Cypher version with CYPHER before each query:

    {
        cypherQueryOptions: {
            addVersionPrefix: true,
        },
    }

    This prepends all Cypher queries with a CYPHER [version] statement:

    CYPHER 5
    MATCH (this:Movie)
    WHERE this.title = $param0
    RETURN this { .title } AS this