Generates an NOT operator before the given predicate
NOT
Cypher Documentation
console.log("Test", Cypher.not( Cypher.eq(new Cypher.Literal("Hi"), new Cypher.Literal("Hi"))); Copy
console.log("Test", Cypher.not( Cypher.eq(new Cypher.Literal("Hi"), new Cypher.Literal("Hi")));
Translates to
NOT "Hi" = "Hi" Copy
NOT "Hi" = "Hi"
Generates an
NOT
operator before the given predicate