Answers for "mongodb find array"

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
2

find object in array mongodb

db.users.findOne({"_id": id},{awards: {$elemMatch: {award:'Turing Award', year:1977}}})
Posted by: Guest on January-04-2021
0

mongodb array field contains

db.inventory.find( { tags: { $all: ["red", "blank"] } } )
Posted by: Guest on December-01-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language