how to delete all docs in a collection mongo db code example
Example 1: mongodb delete all documents
db.collection.delete_many( { } );
Example 2: mango to delete a collection
db.CollectionName.drop()
db.collection.delete_many( { } );
db.CollectionName.drop()