I have a graph with this hierarchy, so I want to find all nodes and relationships connected to a specific node.
I've tried this query :
MATCH path=(:Building {name: 'Trinity'})-[:CONTAIN_SITE*4]-()
RETURN path;
Which in turn is returning the path b...