aiConversationDelete
mutation
Delete an existing AI conversation. On success, returns the identifier of the deleted conversation. AiConversationDeleteMutationResponse!
Arguments
input
AiConversationDeleteMutationInput!
required
Example Operation
# N-able GraphQL Operation

mutation AiConversationDelete($input: AiConversationDeleteMutationInput!) {
  aiConversationDelete(input: $input) {
    contextId
    errors {
      ... on AiConversationNotFoundError {
        message
        contextId
      }
      ... on AiConversationDeleteNotPermittedError {
        message
        contextId
      }
    }
  }
}