+1 vote
in Databases by (56.8k points)
Is there way to find how many Node labels and Relationship types are there in the Neo4j database?

1 Answer

+2 votes
by (71.8k points)
selected by
 
Best answer

To find how many Node labels and Relationship types are in a Neo4j database, you can run the apoc.meta.stats() call.

Here is an example:

CALL apoc.meta.stats()


...