Mongoose not updating embedded document Mongoose not updating embedded document mongoose mongoose

Mongoose not updating embedded document


Try doc.markModified('networks');. It looks like networks is a schemaless type. Mongoose can't autodetect changes to schemaless types.


You need to define your schema fully for this to work. For example:

networks { type : "String"}