I have a category field of type Array in Mongoid.
category
type
Array
Ex. category: [\"val1\",\"val2\",\"val3\"]
In mongoid, there is '$in' operator. So you can do this :
Model.where(category: { '$in': ['val1', 'val2'] })