How to delete a document using the Python client
In order to delete a document you need to know the document id.
doc_id = "Player/George"
client.delete_document(doc_id)
In order to delete a document you need to know the document id.
doc_id = "Player/George"
client.delete_document(doc_id)