mongo db cli remove all documents code example
Example 1: delete an item from db collection mongodb
db.collection.remove(
,
{
justOne: ,
writeConcern:
}
)
Example 2: mango to delete a collection
db.CollectionName.drop()
db.collection.remove(
,
{
justOne: ,
writeConcern:
}
)
db.CollectionName.drop()