when I call
db.collection.remove({\'condition\':\'some condition\'});
This one line will delete all the matching condition documents.
To remove one document from collection use the bellow command
db.collectionname.remove({"_id": ObjectId("5473293d43ecdre56352457f3a")})