Search code examples
neo4jcypher

neo4j how to return all node labels with Cypher?


I can't find how to return a node labels with Cypher.

Anybody knows the syntax for this operation?


Solution

  • There is a function labels(node) that can return all labels for a node.