How do I update a schema array in MongoDB using mongoose?
Typically, I can query an item from MongoDB, change it like you would any other object, and call the save method to save it to the database. It won't work for my schema array, though. I don't have a lot…