API Stability Long-Term

The disableScheduledReport() GraphQL mutation may be used to disable a scheduled report.

Syntax

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

graphql
disableScheduledReport(
      input: DisableScheduledReportInput!
   ): boolean!

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

Show:
graphql
mutation {
  disableScheduledReport( input:
    { viewName: "humio",
      id: "uwsVwYlFWGqzD9bIgKeciwmiS1hCVMyn"
    } )
}
Example Responses
Show:
json
{
  "data": {
    "disableScheduledReport": false
  }
}

Given Datatypes

For DisableScheduledReportInput, there are two parameters. Each is described below:

Table: DisableScheduledReportInput

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 scheduled report.
viewNamestringyes  The name of the view of the scheduled report.