Using Cypher, how can I find a node where a property doesn't exist?
For example, I have two nodes:
A = {foo: true, name: 'A'}, B = { name: 'B'}
Now I'd like to find B, selecting it on the basis of not having the foo
property set. How can I do this?
NOT exists(n.foo)
for future compatibility. – Adolescent