Show all Nodes and Relationships in Data Browser Tab

You may also want to try a cypher query such as:

START n=node(*) RETURN n;

It’s very obvious, and it will return all the existing nodes in the database.

EDIT : the following displays the nodes and the relationships :

START n=node(*) MATCH (n)-[r]->(m) RETURN n,r,m;

Leave a Comment