find All and delete in mongodb code example
Example 1: mongodb remove all from collection
db.collection.remove({})
Example 2: mongo delete all documents
db.bios.remove( { } )
Example 3: find All and delete in mongodb
db.products.remove( { qty: { $gt: 20 } } )