Excluding label names in simple Neo4j Query December 11, 2023 by Tarik This should do it: MATCH (n) WHERE NOT n:Label1 AND NOT n:Label2 RETURN n;