MongoDB Удалить все из коллекции
db.collection.remove({})
Weary Wombat
db.collection.remove({})
db.collection.delete_many( { } );
db.bios.remove( { } )
# To remove all documents in a collection, call the remove method with an empty query
# document {}. The following operation deletes all documents from the bios collection:
db.bios.remove( { } )
db.collention.deleteMany()
// db.collection.remove() id deprecated.
db.products.remove( { qty: { $gt: 20 } } )