aiAgentLlmDelete
Delete an AI Agent LLM with DRAFT version from the AI Agent Registry.
Description: This mutation permanently removes an AI Agent LLM with DRAFT version and all its associations from the AI Agent Registry.
Parameters:
id: ID! - Required. LLM GUID. Must be of type LLM with a DRAFT version.
Returns:
- Boolean - true if deletion was successful, false otherwise.
Example Usage:
mutation {
aiAgentLlmDelete(id: "llm-123")
}
aiAgentLlmDelete(
id: ID!
): Boolean!
Arguments
aiAgentLlmDelete.id ● ID! non-null scalar miscellaneous
Type
Boolean scalar miscellaneous
The Boolean scalar type represents true or false.
Was this topic helpful?