Table

Neo4j dashboard tables can render all data returned by a Cypher query as a result table. This includes simple data like numbers or text, but also Neo4j-native data like nodes, relationships, and paths.

When you hover over a table cell, a copy icon appears towards the end of the cell which lets you copy the content of the table cell to the clipboard.

Examples

Basic table

Cypher query for a table which displays the number of products per category
MATCH (p:Product)-[:PART_OF]->(c:Category)
RETURN c.categoryName AS Category, count(p) AS Products LIMIT 20
visualization table basic
Figure 1. A table displaying the number of products per category

Configuration

Coming soon.