isDeleted: true.
For TypeScript, the GraphQL SDK gives you a fully typed client for these operations.
task:delete
Mutation
Variables
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Soft-delete a task, removing it from the active list but keeping it queryable by ID.
isDeleted: true.
task:deletemutation deleteTask($input: DeleteTaskInput!) {
deleteTask(input: $input) {
task {
id
isDeleted
}
error {
message
type
code
fields {
field
message
type
}
}
}
}
{
"input": {
"taskId": "ta_01HXXXXXXXXXXXXXXXXXXXXXXX"
}
}
Was this page helpful?
