remove based on key mongodb code example
Example: mongo delete a key in matching documents
db.collection_name.update({ _id: 1234 }, { $unset : { description : 1} })
db.collection_name.update({ _id: 1234 }, { $unset : { description : 1} })