You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Following code fails, b/c the match is not immutable:
varnode = Cypher.anyNode().named("foo");
varmatch = Cypher.match(node);
varproperty = node.property("foo");
// this is another statement we defer from the match varotherStatement = match.with(node)
.returning(property)
.build();
varcypher = match
.returning(Cypher.asterisk())
.build().getCypher();
assertThat(cypher).isEqualTo("MATCH (foo) RETURN *");
I get an assertion error:
expected: "MATCH (foo) RETURN *"
but was: "MATCH (foo) WITH foo RETURN *"
The text was updated successfully, but these errors were encountered:
The Following code fails, b/c the match is not immutable:
I get an assertion error:
The text was updated successfully, but these errors were encountered: