cypher-query-builder
cypher-query-builder copied to clipboard
Add support for where comparators inside condition arrays
Arrays of values inside conditions as a shorthand for the OR
operator should also accept comparators as their members.
query.where({ age: [ lessThan(18), greater than(65) ]}
// WHERE age < 18 OR age > 65