ノードドライバーの構文は、使用している構文であるシェルの構文とは異なります。
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()
には別の関数があります