match (a:person {name:'John'} )-[r:KNOWS]->(b:person) return b
will give me all people known by John. How do I get all people NOT known by John?
match (a:person {name:'John'} )-[r:KNOWS]->(b:person) return b
will give me all people known by John. How do I get all people NOT known by John?