Mongodb – findOneAndUpdate doesn't update object's field (array of objects)
I'm trying to update multiple fields of a object in an array but it doesn't work. what am i doing wrong? Data Sample: { _id: 'mongodbid', name: 'something', employees: [ { age: 25, name: 'name', salary: 500 }, { age:…