mongodb sh command find in one collection and delete based on search on another collection code example
Example 1: mongodb delete all documents
db.collection.delete_many( { } );
Example 2: delete collection mongodb
db.collection.drop()
db.collection.delete_many( { } );
db.collection.drop()