Answers for "mongodb find inside array of object"

3

search inside array with object mongodb

db.users.find({awards: {$elemMatch: {award:'National Medal', year:1975}}})
Posted by: Guest on January-04-2021
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 find inside array of object

> db.searchArrayDemo.find({EmployeeDetails:{$elemMatch:{EmployeePerformanceArea : "C++", Year : 1998}}}).pretty();
Posted by: Guest on October-14-2021
0

find iemts in object of array mongodb

> db.searchArrayDemo.find({EmployeeDetails:{$elemMatch:{EmployeePerformanceArea : "C", Year : 1996}}}).pretty();
Posted by: Guest on August-05-2021

Code answers related to "mongodb find inside array of object"

Browse Popular Code Answers by Language