We’ve added a new updateCaseName mutation that allows you to update the name of an existing case.
The mutation accepts an UpdateCaseNameInput with the caseId of the case to update and the new name value, returning an UpdateCaseResult.
An example of using this new mutation is as follows:
mutation UpdateCaseName($input: UpdateCaseNameInput!) {
updateCaseName(input: $input) {
... on CaseInformation {
caseId
name
}
}
}