Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
06-24-2019 11:49 AM
Hi,
I am trying to query for all nodes of a specific type that do not have a specific property value, is this possible?
MATCH (person:People)-[:NAME]->(name:Name)
WHERE name.firstName = 'Sixto' IS NULL
RETURN person
or
MATCH (person:People)-[:NAME]->(name:Name)
WHERE NOT EXISTS((person:People)-[:NAME]->(name {firstName:'Sixto'}))
RETURN person
both examples do not work but is something like this possible?
Solved! Go to Solution.
06-24-2019 12:00 PM
06-24-2019 12:00 PM
Do you mean not to match?
WHERE name.firstName <> 'Sixto'
All the sessions of the conference are now available online