aiAliasDelete
Delete a single AI Agent alias from the AI Agent Registry.
Description: This mutation removes an AI Agent alias by its unique identifier.
Implementation logic
- If DRAFT(TestAlias) alias id provided : Delete entire agent
- If non-DRAFT alias id provided : Delete alias only
- If after alias deletion associated version has no remaining aliases : Delete version
Input Parameters:
id: ID! - Required. The unique identifier of the AI Agent alias to be deleted.
Response:
- Returns a boolean indicating whether the alias was successfully deleted.
Example Request:
mutation DeleteAlias {
aiAliasDelete(id: "alias-guid")
}
aiAliasDelete(
id: ID!
): Boolean!
Arguments
aiAliasDelete.id ● ID! non-null scalar miscellaneous
Type
Boolean scalar miscellaneous
The Boolean scalar type represents true or false.
Was this topic helpful?