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"
}
}