Added
New `delete_doc` mutation
July 9th, 2025
š·ļø API version:
2025-10
You can now delete an existing document using the new delete_doc mutation.
mutation {
delete_doc (docId: 12345)
}The response is a JSON object that confirms whether the deletion was successful and returns the deleted document's unique identifier.
{
Ā "data": {
Ā Ā "delete_doc": {
Ā Ā Ā "success": true,
Ā Ā Ā "id": "12345"
Ā Ā }
Ā },
Ā "extensions": {
Ā Ā "request_id": "f783140d-4b65-9637-9967-52b7a16cba04"
Ā }
}