I have the following query (it is shortened a bit)
MATCH (st:Start)
WHERE (st.Id = "myId")
WITH st
MATCH (n)-[:relation]->(foo: Foo)
WHERE n = st
WITH collect(foo) as foos
MATCH (f: Foo) -[:otherRelation]->(b: Bar)
WHERE f IN foos
RETURN foos, collec...
stackoverflow.com
Sorting out Nodetypes after yield in Neo4jClient
c#, neo4j, neo4jclient
asked by
Alastar Frost
on 07:07PM - 07 Nov 20 UTC
Hi, for full context plea...
Those are great suggestions, I will try to work some of the streamlined patterns you used in.
I am still trying to figure out why this sideeffect happens, but it seems to not happen in the simple example I tried to compile. If I find what the problem...