how to update multiple documents in mongodb native nodejs driver?
db.remaindMe.update(
{ { "userId": uid, "serviceId": sid, mttabs:"mttabs"
},
},
{ $set: { "mttabs":req.body.mttabs }
},)
how to update multiple documents in mongodb native nodejs driver?
db.remaindMe.update(
{ { "userId": uid, "serviceId": sid, mttabs:"mttabs"
},
},
{ $set: { "mttabs":req.body.mttabs }
},)
db.remaindMe.update(searchQuery,updateoptions, {multi:true},function(err,data){
if(err){
//Error Message
}
else if(data){
console.log(data);
//do your stuff
}
});