aiAgentToolDelete
Delete an AI Agent Tool from the AI Agent Registry.
Description: This mutation permanently removes an AI Agent Tool from the AI Agent Registry only if no associations exist. The tool and all its associated resources will be deleted.
Parameters:
id: ID! - Contains tool ID.
Returns:
- Boolean - true if deletion was successful, false otherwise.
Example Usage:
mutation {
aiAgentToolDelete(id: "tool-123")
}
Error Handling:
- Validates tool exists and belongs to provider account.
- Returns error if tool has associations.
- Returns descriptive error messages for invalid operations.
aiAgentToolDelete(
id: ID!
): Boolean
Arguments
aiAgentToolDelete.id ● ID! non-null scalar miscellaneous
Type
Boolean scalar miscellaneous
The Boolean scalar type represents true or false.
Was this topic helpful?