User
というモデルがあるとします。オブジェクトIDの配列があります。
私が持っているIDの配列と「交差」するすべてのユーザーレコードを取得したい。
User.find({ records with IDS IN [3225, 623423, 6645345] }, function....
$ in演算子を使用する必要があります>
https://docs.mongodb.com/manual/reference/operator/query/in/#op._S_in
例えば:
Users.find( { "fb" : { id: { $in : arrayOfIds } } }, callback );
以下に、$ in演算子を使用するマングースな方法を示します。
User.find()
.where('fb.id')
.in([3225, 623423, 6645345])
.exec(function (err, records) {
//make magic happen
});
ドット表記は、サブドキュメントへのクエリに非常に便利です。
User.where({ records: { $in: [3225, 623423, 6645345] } }, function ...
詳細はこちら: http://docs.mongodb.org/manual/reference/operator/query/
私にとっては、このように働く
IDs=["5b00c4b56c7fb80918293dd9","5b00c4b56c7fb80918293dd7",...]
const users= await User.find({records:IDs})
IdsはオブジェクトIDの配列です。
const ids = [
'4ed3ede8844f0f351100000c',
'4ed3f117a844e0471100000d',
'4ed3f18132f50c491100000e',
];
コールバックあり:
User.find().where('_id').in(ids).exec(callback);
非同期機能の場合:
records = await User.find().where('_id').in(ids).exec();