API Stability Long-Term

The deleteInteraction() GraphQL mutation may be used to delete an interaction.

Syntax

Below is the syntax for the deleteInteraction() mutation field:

graphql
deleteInteraction(
      input: DeleteInteractionInput!
   ): boolean!

Below is an example of how this mutation field might be used:

Show:
graphql
mutation {
  deleteInteraction( input: {
     path: "humio",
     id: "ZLP9jEExnGyi6IXWZp2PBG9EMdtQSYTV"
  } )
}
Example Responses
Show:
json
{
  "data": {
    "deleteInteraction": true
  }
}

Given Datatypes

For DeleteInteractionInput, there are two parameters. One of the is the path. This is typically the name of the repository or view. The id is the unique identifier of the interaction to delete.

Table: DeleteInteractionInput

ParameterTypeRequiredDefaultStabilityDescription
Some arguments may be required, as indicated in the Required column. For some fields, this column indicates that a result will always be returned for this column.
Table last updated: Sep 18, 2024
idstringyes  The unique identifier of the interaction to delete.
pathstringyes  The path.