·
2 commits
to dev
since this release
Patch Changes
-
#5952
4e14680
Thanks @angrykoala! - AddaddVersionPrefix
tocypherQueryOptions
in context to add a Cypher version withCYPHER
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