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