I can't find how to return a node labels with Cypher.
Anybody knows the syntax for this operation?
To get all distinct node labels:
MATCH (n) RETURN distinct labels(n)
To get the node count for each label:
MATCH (n) RETURN distinct labels(n), count(*)