I have a problem with Mongoose and MongoDb
It is very interesting that only Model.update works and save never works and does not even fire
Model.update
save
I came across the same issue, turns out that instance.save() returns a promise. So all you need to do is handle the promise. Using async/await-
instance.save()
async/await
await instance.save()