I want to run a query like so:
db.sent.find({trigger_id:ObjectId("516f029ac5f4810002000007"), created_at: {$gte: ISODate("2013-04-01T00:00:00.000Z"), $lt: ISODate("2013-05-01T00:00:00.000Z")}}).count()
but where the ObjectID("516f029ac5f4810002000007") is, I wish that to be a number of different values and for mongo to pull out records that match ANY of the values.
How do I do this? THanks!