MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Spingi l'elemento nell'array in mangusta

Per quanto ne so, devi fare come di seguito.

Model.findAndUpdate({_id: 'your_id'}, 
                    {$push: {'your_array_field': 
                    {"name": "foo","idAccount": 123456}}}, 
                    {new: true}, (err, result) => {
                    // Rest of the action goes here
                   })