Hi everyone,
I have a node and I want to get all connected nodes in several steps.
MATCH (n:tx)-[:tx2tx*1..3]-(m:tx)
WHERE ID(m)=1791789334
RETURN *
What I get is all possible paths with node m in them, in total about 2k paths. I don't need the pat...