I need update my document by inserting {four: five, six: seven}
in three
db.collection.findAndModify({
query: {_id: doc._id},
update: {
$set: {one: two, three: {four: five, six: seven}},
$unset: {eight: ""}
},
new: true
}, function(err, data) {
});
I'm using mongojs in node.js and an error occurs.
Thanks.