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
MATCH (v0:Test)
WHERE (EXISTS{MATCH (v0)-[:HAS]->(v1:A)WHEREv1.id= $p0}ANDEXISTS{MATCH (v0)-[:HAS]->(v1:B)WHEREv1.id= $p1})
RETURNv0{ .id}ASv2
expected result
MATCH (v0:Test)
WHERE (EXISTS{MATCH (v0)-[:HAS]->(v1:A)WHEREv1.id= $p0}OREXISTS{MATCH (v0)-[:HAS]->(v1:B)WHEREv1.id= $p1})
RETURNv0{ .id}ASv2
diff
Node: The diffs are from neo4j-graphql-java, so the left side is the js cypher and the right side is the java one. Top is the normalized version bottom the original.
The text was updated successfully, but these errors were encountered:
given the schema:
I would expect different results for the following requests:
SINGLE
request
actual result
expected result
diff
SOME
request
actual result
expected result
diff
Node: The diffs are from neo4j-graphql-java, so the left side is the js cypher and the right side is the java one. Top is the normalized version bottom the original.
The text was updated successfully, but these errors were encountered: