how to delete a collection in mongoshell 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()