“Mongoose Dokument aus Array entfernen” Code-Antworten

Mongoose Dokument aus Array entfernen

//db.collection.findOneAndUpdate( filter, update, options )
//{ $pull: { <field1>: <value|condition>} }

List.findOneAndUpdate({ name: listName }, { $pull: { <field1>: <value|condition> } }, function(err, foundList) {
    if (!err) {
         //your code
     }
}); //Here List is my collection name

//By Reacto Kalyan
Fair Falcon

Mongoose entfernen Element aus Array

db.survey.update( // select your doc in moongo
    { }, // your query, usually match by _id
    { $pull: { results: { $elemMatch: { score: 8 , item: "B" } } } }, // item(s) to match from array you want to pull/remove
    { multi: true } // set this to true if you want to remove multiple elements.
)
Lonely Louse

Mongoose Dokument aus Array entfernen

Favorite.updateOne( {cn: req.params.name}, { $pullAll: {uid: [req.params.deleteUid] } } )
Amused Ant

Ähnliche Antworten wie “Mongoose Dokument aus Array entfernen”

Fragen ähnlich wie “Mongoose Dokument aus Array entfernen”

Weitere verwandte Antworten zu “Mongoose Dokument aus Array entfernen” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen