Menu Bar & Database Information
Menu Bar Controls
Refresh — Update node, edge, and property information.
Close Session — Disconnect the current database session.
Database Summary Buttons
When connected to a database, buttons summarizing nodes, edges, and properties appear:
Node Labels
List of all node labels with counts (e.g.,Person (12)
).
*
means all nodes.Edge Labels
List of all edge labels with counts. Edges shown in rectangular boxes.Properties
List of all properties in the database, shown as grey rectangles.
Clicking any button automatically generates a query in the Query Editor:
Node Label Query:
MATCH (v) WHERE LABEL(v) = 'label_name' RETURN v
Edge Label Query:
MATCH (v)-[r]->(v2) WHERE LABEL(r) = 'label_name' RETURN v
Node Property Query:
MATCH (v) WHERE v.property IS NOT NULL RETURN v
Edge Property Query:
MATCH (v)-[r]->(v2) WHERE r.property IS NOT NULL RETURN v