neode-querybuilder
neode-querybuilder copied to clipboard
No whereIn
.whereIn
would be a great addition.
Example:
new Builder()
.match('color', 'Color')
.whereIn('color.name', ['red', 'blue'])
should be
MATCH (color:Color)
WHERE color.name IN ['red', 'blue']
👍