API Stability Long-Term

The deleteScheduledSearch() GraphQL mutation may be used to delete a scheduled search in LogScale.

For more information on scheduled searches, see the Scheduled searches documentation page. Also, look at the Searching Data documentation page as it relates to saving queries.

Syntax

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

graphql
deleteScheduledSearch(
     input: DeleteScheduledSearch!
   ): boolean!

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

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

Given Datatypes

For deleteScheduledSearch, there are a couple of parameters that may be given. They're listed below along with a description of each:

Table: DeleteScheduledSearch

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 scheduled search.
viewNamestringyes Long-TermThe name of the scheduled search.