Answers for "how to find specific value in mongodb"

Go
3

mongodb find field based on variable

var name = req.params.name;
var value = req.params.value;
var query = {};
query[name] = value;
collection.findOne(query, function (err, item) { ... });
Posted by: Guest on May-25-2020
11

mongo console find by id

db.collection.find({_id:ObjectId('5e208c18d598b806c869ca37')}).pretty()
Posted by: Guest on April-27-2020

Code answers related to "how to find specific value in mongodb"

Browse Popular Code Answers by Language