Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
08-22-2018 07:32 PM
Although assigning a node one or more labels provides many benefits (i.e. performance gains from index usage, ability to group nodes into sets, etc), it is possible to create a node without any labels.
The following Cypher can be used to identify all nodes in the graph which have no label defined:
MATCH (n) WHERE NOT labels(n) RETURN n
Label usage is detailed
here.
All the sessions of the conference are now available online