API Stability Deprecated

The addStarToAlertV2() GraphQL mutation used to add a star to an alert. However, this has been deprecated and is no longer in use and has no effect. It will be removed in version 1.213.

For more information on alerts, see the Triggers documentation page.

Syntax

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

graphql
addStarToAlertV2(
      input: AddStarToAlert!
    ): Alert!

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

Show:
graphql
mutation {
  addStarToAlertV2(input: 
       { viewName: "humio", id: "eweKcj7zbRDJqnS87HE1oZseiocfOGdN" } )
  { name, description, enabled, runAsUser { id, username } }
}
Example Responses
Show:
json
{
  "data": {
    "addStarToAlertV2": {
      "name": "Late Night",
      "description": "Any activities late at night.",
      "enabled": true,
      "runAsUser": {
        "id": "jSl8Iz25KhDiPQzXYE6YDetG",
        "username": "russell.dyer@crowdstrike.com"
      }
    }
  }
}

Given Datatypes

For AddStarToAlert, there is only the input parameter. With it, for the input data, you would provide the data using the AddStarToAlert input method. Below is a list of requirements for it:

Table: AddStarToAlert

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 17, 2024
idstringyes DeprecatedThe unique identifier of the alert.
viewNamestringyes DeprecatedThe name of the view of the alert.

Returned Datatypes

alert has several parameters. They're listed and described here:

Table: Alert

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: Mar 28, 2025
actionsstringyes Long-TermList of identifiers for actions to fire on query result.
actionsV2[Action]yes Long-TermList of unique identifiers for actions to fire on query result. See Action.
allowedActions[AssetAction]yes PreviewList of allowed actions. The is a preview; it may be changed. See AssetAction.
descriptionstring  Long-TermDescription of alert.
displayNamestringyes Long-TermName of the alert.
enabledbooleanyes Long-TermFlag indicating whether the alert is enabled.
idstringyes Long-TermThe identifier of the alert.
isStarredbooleanyes Long-Term

Whether the calling user has starred the alert.

This has been deprecated and is no longer in use and has no effect. It will be removed in version 1.213.

labels[string]yes Long-TermLabels attached to the alert.
lastErrorstring  Long-TermLast error encountered while running the alert.
lastWarnings[string]yes Long-TermLast warnings encountered while running the alert.
namestringyes Long-TermThe name of the alert.
packagePackageInstallation  Long-TermA package installation. See PackageInstallation.
packageIdVersionedPackageSpecifier  Long-TermThe unique identifier of the package installed, if one was used. VersionedPackageSpecifier is a scalar.
queryOwnershipQueryOwnershipyes Long-TermOwnership of the query run by the alert. See QueryOwnership.
queryStartstringyes Long-TermStart of the relative time interval for the query.
queryStringstringyes Long-TermLogScale query to execute.
resourcestringyes Short-TermThe resource identifier for the alert.
runAsUserUser  Long-TermIdentifier of user by which the alert is run. See User.
throttleFieldstring  Long-TermField on which to throttle alert.
throttleTimeMillislongyes Long-TermThrottle time in milliseconds.
timeOfLastTriggerlong  Long-TermUNIX timestamp for when the alert was last triggered.
yamlTemplatestringyes Long-TermA YAML formatted string that describes the alert.

For the alert parameters, there are a couple of special datatypes. One is the AssetType, but that merely requires a choice from an enumerate list, which is given in the alert table above.