Open dodiego opened 5 years ago
I managed to solve my test by using a slightly different query:
MATCH (v1) WITH v1
MATCH (v1)-[r0:rel2]->(v2) WITH v1, r0, v2
MATCH (v2)-[r1:sub_rel]->(v3) WITH v1, r0, v2, r1, v3
RETURN *
But I still don't know why the first version doesn't work.
Hi there,
So, i have the following structure:
If I run the following query:
I get the following error:
ERROR: properties in vertex cannot be NULL
Also, the following query gives me the same error:But if i remove the last
WITH
, it works just fine:Why does this happen?
If it is of any help, you can check the framework that i'm working on and run the
relationship of relationship of relationship
test