delete complete collection mongodb code example
Example 1: drop a collection in mongodb
db.mycollection.drop()
Example 2: mongodb remove all from collection
db.collection.remove({})
db.mycollection.drop()
db.collection.remove({})