[18:11:01] <ario> can i do osmething like this: db.applicants.find({status: {$or: ['accepted', 'disqualified']}})
[20:51:39] <advorak> ario, I'm still brushing up on mongo, myself.. how about: db.applicants.find({status: {$in: ['accepted', 'disqualified']}})
[20:56:33] <advorak> ario, which is think is equivalent to: db.applicants.find({$or: [{status: 'accepted'},{status: 'disqualified'}]})
[20:57:08] <advorak> Equivalent in terms of the data it outputs .. I'm sure somebody can correct me as to why the queries are functionally different in how they operate. :-)