Using $unset to remove old fields in MongoDB collections, we can reduce the size of the documents in the collection
db.collection.updateMany({}, { $unset: { oldField: "" , "unwantedField": "" } });