Retirer la propriété MongoDB

db.myCollection.update({}, {$unset: {fieldToRemove:1}} , {multi: true});
Hobbes