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