Mongoose obsługuje teraz to natywnie za pomocą findOneAndUpdate (wywołuje MongoDB findAndModify).
Opcja upsert =true tworzy obiekt, jeśli nie istnieje. domyślnie fałszywe.
MyModel.findOneAndUpdate(
{foo: 'bar'}, // find a document with that filter
modelDoc, // document to insert when nothing was found
{upsert: true, new: true, runValidators: true}, // options
function (err, doc) { // callback
if (err) {
// handle error
} else {
// handle document
}
}
);