For the complete documentation index, see llms.txt. This page is also available as Markdown.

addIncidentIndicators

Add indicators to the monitored scope (re-runs the matcher).

Examples

mutation AddIncidentIndicators($incidentId: String!, $indicators: [IndicatorInput!]!) {
  addIncidentIndicators(incidentId: $incidentId, indicators: $indicators) {
    id
    incidentId
    kind
    value
    versionRange
    fixedVersions
    severity
    cvssScore
    addedAt
    source
    addedBy
    status
    url
    lastFetchedAt
    autoExpand
  }
}

Variables

This is an example input showing all available input fields. Only fields marked as required in the schema are mandatory.

Arguments

You can use the following argument(s) to customize your addIncidentIndicators mutation.

Argument
Description
Supported fields

incidentId String! required

indicators [IndicatorInput!]! required

kind IndicatorKind! value String! versionRange String fixedVersions [String!] severity IncidentSeverity cvssScore Float url String autoExpand Boolean

Fields

Return type: [Indicator!]!

You can use the following field(s) to specify what information your addIncidentIndicators mutation will return. Please note that some fields may have their own subfields.

Field
Description
Supported fields

id String!

incidentId String!

value String!

versionRange String

fixedVersions [String!]!

cvssScore Float

addedAt DateTime!

source String!

addedBy String

status String!

url String

lastFetchedAt DateTime

autoExpand Boolean

Last updated