mongodb delete from collection code example
Example 1: drop a collection in mongodb
db.mycollection.drop()
Example 2: mongodb remove all from collection
db.collection.remove({})
Example 3: delete collection mongodb
db.collection.drop()
Example 4: delete all of something in mongo shell
Removes ALL: db.<collectionName>.remove({})
Example: db.users.remove({id: 73465872012183})