नोड ड्राइवर में सिंटैक्स शेल की तुलना में भिन्न होता है, जो कि आपके द्वारा उपयोग किया जा रहा सिंटैक्स है।
db.collection("collection_name").findAndModify(
{ _id: _id }, // query
[], // represents a sort order if multiple matches
{ $set: data }, // update statement
{ new: true }, // options - new to return the modified document
function(err,doc) {
}
);
.findAndRemove()
. के लिए एक अलग फ़ंक्शन है