You can use $in operator.
Ex. query.
Mymodel.find({ fieldname : { $in : [field_value_1, field_value_2,field_value_3] } })
This will find all documents with fieldname set to any of those three field values.
More ref. docs.mongodb.com/manual/reference/operator/query/… mongoosejs.com/docs/queries.html