I have a category field of type Array in Mongoid.
category
type
Array
Ex. category: [\"val1\",\"val2\",\"val3\"]
This worked
Model.where(:category.in => ['val1','val2'])
From Mongo Docs