So I have the following cypher example that I use to help traverse a specific tree structure:
MATCH (start: node_label{id:1}) - [r:relationship_A|relationship_B*] -> (endNodes:node_label)
return size(r)/2, endNodes.id
Now this finds exactly what I ne...