Show all Nodes and Relationships in Data Browser Tab

gruber picture gruber · Dec 4, 2011 · Viewed 50.9k times · Source

How can I show all nodes and relationships in Data Browser tab?

What are sample index queries that I can type in in search field?

Answer

pimguilherme picture pimguilherme · Dec 18, 2012

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;