kuzudb / explorer

Browser-based user interface for Kùzu graph database
https://hub.docker.com/r/kuzudb/explorer
MIT License
29 stars 5 forks source link

Feature: Add convenience button for match all nodes and rels query #153

Open prrao87 opened 2 months ago

prrao87 commented 2 months ago

When building a new graph, it's a bit tedious to write a Cypher query to inspect all nodes or rels (up to a limit, say 25).

We should offer a convenience button *() along with a summary count of the total number of nodes and relationships in the graph, similar to how Neo4j does it.

We should provide a button like the below button in Neo4j that will auto-write the following match query: image

MATCH (a)-[b]->(c) RETURN * LIMIT 25

This will allow the user to immediately run the query rather than having to type the query each and every time manually (which is slow because it involves a lot of opening and closing brackets).