MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Entfernen eines Objekts aus einem Array innerhalb einer Collection

Anscheinend $elemMatch wird dazu benötigt:

Meteor.users.update({ _id: this.userId }, { $pull: { 
  "profile.following": { $elemMatch: { service: service, type: type } } }
});