added
New `update_doc_name` mutation
July 7th, 2025
🏷️ API version:
2025-10
You can now update an existing document's name using the new update_doc_name
mutation.
mutation {
update_doc_name(docId: 12345, name: "The new document name.")
}
The response is a JSON object that contains the updated name.
{
"data": {
"update_doc_name": {
"success": true,
"name": "The new document name."
}
},
"extensions": {
"request_id": "cf824c4f-3bb2-842d-c5b7-e471842121b7"
}
}