I am trying to do a "$in" query with waterline I have an Array and I want to get a list of document with ids that are in the array. I don't know how to do that.
I tried:
User.find()
.where({id : {in : array}})
done(...)
But it doesn't seem to work as expected.
Any way I can do that?