Waiting for engine...
Skip to main content

aiAgentTaskDelete

Delete an AI Agent Task

Description: This mutation deletes an AI Agent Task when there are no associations

Parameters:

  • id: ID! - Contains task ID .

Returns:

  • Boolean - true if deletion/disassociation was successful, false otherwise.

Example Usage:

mutation {
aiAgentTaskDelete(id: "task-123")
}

Error Handling:

  • Validates task exists and belongs to provider account.
  • Returns descriptive error messages for invalid operations.
aiAgentTaskDelete(
id: ID!
): Boolean

Arguments

aiAgentTaskDelete.id ● ID! non-null scalar miscellaneous

Type

Boolean scalar miscellaneous

The Boolean scalar type represents true or false.

On this Page