hi
i want to check existence of a node with some relationships that if one of them exist the node must be selected as result.
:X means anythings
match (a:A)-[:X]->(b:B)-[:X]->(c:C),
(b)-[:X]->(d:D),
(b)-[:X]->(e:E)
return a,b
this means select all of...