Is there a way to get all nodes or all relationships or both together in Neo4j? The closest I've seen is the relationships()
, for example:
MATCH p = (a)-->(b)-->(c)
WHERE a.name = 'Alice' AND c.name = 'Eskil'
RETURN relationships(p)
However, I'm looking to do something similar to:
SHOW TABLES
Where it would just list everything. Is it possible to do something like that not at the query-level but for an entire database?