How to get nodes without labels ?

To get nodes which don't have label specified, we can use this Cypher query:

MATCH n WHERE LENGTH(LABELS(n)) = 0 RETURN n