Minor Changes
-
#471
1c671f1
Thanks @angrykoala! - Add support for dynamic labels by passing an expression tonode.label
:new Cypher.Match(new Cypher.Pattern(movie)).set(movie.label(Cypher.labels(anotherNode)));
MATCH (this0) SET this0:$(labels(this1))
Patch Changes
-
#476
79e1e87
Thanks @angrykoala! - Escapes variables using the following reserved words (case insensitive):-
where
-
is
-
contains
-
in
For example:
new Cypher.NamedVariable("Where").property("title");
Generates the following Cypher
`Where`.title
-