find and delete in mongodb code example
Example 1: mongodb delete all documents
db.collection.delete_many( { } );
Example 2: mongo delete all documents
db.bios.remove( { } )
Example 3: delete collection mongodb
db.collection.drop()
Example 4: mango to delete a collection
db.CollectionName.drop()