Generates an XOR operator between the given predicates
XOR
Cypher Documentation
console.log("Test", Cypher.xor( Cypher.eq(new Cypher.Literal("Hi"), new Cypher.Literal("Hi")), new Cypher.Literal(false)).toString()); Copy
console.log("Test", Cypher.xor( Cypher.eq(new Cypher.Literal("Hi"), new Cypher.Literal("Hi")), new Cypher.Literal(false)).toString());
Translates to
"Hi" = "Hi" XOR false Copy
"Hi" = "Hi" XOR false
Generates an
XOR
operator between the given predicates