I have Mongo database with 16 collections. All collection has the common field domain_id.
How can I remove documents with specified domain_id from all collections.
I know only how to remove document from single collection.
db.getCollection('collectionName1').remove({domain_id : '123'})