Hi everyone, I'm new to Neo4j but currently what I'm trying to do is visualize a node and all the relationships to it by layers. So for example if we use the movies/actors relationships database that's one of the Neo4j tutorials and I look at tom hanks.
the command of " Match ((n:Person)-[:ACTED_IN]-(b:Movie)) where n.name =~ "Tom Hanks" return n,b"
gives me back Tom Hanks and all of his immediate relationships (all his movies). Now if I want to see what the next layer of relationships-- so all the people connected to those movies how could i do that?