# N-able GraphQL Operation
mutation AiConversationDelete($input: AiConversationDeleteMutationInput!) {
aiConversationDelete(input: $input) {
contextId
errors {
... on AiConversationNotFoundError {
message
contextId
}
... on AiConversationDeleteNotPermittedError {
message
contextId
}
}
}
}