Answers for "how to find by multiple ids in mongoose"

1

findmany mongoose or find by multiple Ids

model.find({
    '_id': { $in: [
        mongoose.Types.ObjectId('4ed3ede8844f0f351100000c'),
        mongoose.Types.ObjectId('4ed3f117a844e0471100000d'), 
        mongoose.Types.ObjectId('4ed3f18132f50c491100000e')
    ]}
}, function(err, docs){
     console.log(docs);
});
Posted by: Guest on May-23-2021

Code answers related to "how to find by multiple ids in mongoose"

Browse Popular Code Answers by Language