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