v2.4.0
·
102 commits
to main
since this release
Minor Changes
-
#508
12a78f0
Thanks @angrykoala! - Add support for+=
operator onSET
const movie = new Cypher.Node(); const clause = new Cypher.Match(new Cypher.Pattern(movie)).set([ movie, "+=", new Cypher.Map({ title: new Cypher.Param("The Matrix"), year: new Cypher.Param(1999), }), ]);
MATCH (this0) SET this0 += { title: $param0, year: $param1 }
Patch Changes
-
#513
d4337b9
Thanks @angrykoala! - RenamedisableLabelEscaping
todisableNodeLabelEscaping
inunsafeEscapeOptions
:const queryResult = matchQuery.build({ unsafeEscapeOptions: { disableNodeLabelEscaping: true, disableRelationshipTypeEscaping: true, }, });