I seem to be struggling to find the right way of deleting a document. I.e. should I be using remove() or delete_one() for example and also what is the canonical method of deleting by id, which is a string
.
I.e. should I be using the following:
mongo.db.xxx.delete_one({'_id': { "$oid" : str(_id) } })
or can I use another format?
mongo.db.xxx.remove({'_id': { "$oid" : str(_id) } })
mongo.db.xxx.remove({'_id': ObjectId(_id) })
What is the canonical form?