remove all documents in collection at mongodb code example
Example 1: mongodb remove all from collection
db.collection.remove({})
Example 2: mongo delete all documents
db.bios.remove( { } )
db.collection.remove({})
db.bios.remove( { } )