दस्तावेज़
के रूप में findOneAndUpdate
. के लिए निर्दिष्ट करें, आपको अपनी प्रक्षेपण वस्तु को select
. के रूप में शामिल करने की आवश्यकता है options
. की संपत्ति पैरामीटर:
theCollection.findOneAndUpdate(
{ name : 'cherif',
'friends.name':'kevin'
},
{ $set:{
'friends.$.age':25
}
},
{ select: {
friends: {
$elemMatch:
{ age : 25 }
}
}
},
function(err,result){
if (!err) {
console.log(result);
}
});