API Stability Long-Term

The deleteFilterAlert() GraphQL mutation may be used to delete an existing filter alert.

For more information on filter alerts, see the Filter alerts documentation page.

Syntax

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

graphql
deleteFilterAlert(
      input: DeleteFilterAlert!
   ): boolean!

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

Show:
graphql
mutation {
  deleteFilterAlert(input: 
       {viewName: "humio", 
        id: "WKoeRcQ0EpuUskKvIJrGSXunEQZ09kU1"}
  )
}
Example Responses
Show:
json
{
  "data": {
    "deleteFilterAlert": true
  }
}

Given Datatypes

For DeleteFilterAlert, there are two parameters. They're described below:

Table: DeleteFilterAlert

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 Long-TermThe unique identifier of the filter alert to delete.
viewNameRepoOrViewNameyes Long-TermName of the view of the filter alert. RepoOrViewName is a scalar.