mongo delete all from collection code example
Example 1: mongodb delete all documents
db.collection.delete_many( { } );
Example 2: mongo delete all documents
db.bios.remove( { } )
Example 3: delete an item from db collection mongodb
db.collection.remove(
<query>,
{
justOne: <boolean>,
writeConcern: <document>
}
)