I have those code running try to save an object into MongoDB.
The .save()
never got success run. the code runnin
I just ran into a similar issue in my code. For mine, I was dealing with an object within my user document. I had to run a user.markModified('object')
before the user.save()
to ensure the changes were saved to the database.
My running theory is that Mongoose wasn't tracking items unset or removed from the database automatically