Answers for "mongoose find array of ids"

Go
1

mongodb findmany

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 December-27-2019
0

find by array of ids mongoose

User.find({ _id: { $in: followedIDs } }, (err, verbs) => {});
Posted by: Guest on April-07-2021
0

mongoose model find all documents with ids in array

const ids =  [
    '4ed3ede8844f0f351100000c',
    '4ed3f117a844e0471100000d', 
    '4ed3f18132f50c491100000e',
];

// 3 Methods below:
// Using Mongoose with async function:
const records = await Model.find().where('_id').in(ids).exec();

// Or more concise:
const records = await Model.find({ '_id': { $in: ids } });

// Using Mongoose with callback:
Model.find().where('_id').in(ids).exec((err, records) => {});
Posted by: Guest on August-30-2021
0

find items from array of ids mongoose

const records = await Model.find().where('_id').in(ids).exec();
Posted by: Guest on June-29-2021

Code answers related to "mongoose find array of ids"

Browse Popular Code Answers by Language