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

updateIncidentIndicator

Edit an indicator (version range / fixed versions; re-runs the matcher).

Examples

mutation UpdateIncidentIndicator($incidentId: String!, $indicatorId: String!, $input: UpdateIndicatorInput!) {
  updateIncidentIndicator(incidentId: $incidentId, indicatorId: $indicatorId, input: $input) {
    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 updateIncidentIndicator mutation.

Argument
Description
Supported fields

incidentId String! required

indicatorId String! required

input UpdateIndicatorInput! required

versionRange String fixedVersions [String!]

Fields

Return type: Indicator!

You can use the following field(s) to specify what information your updateIncidentIndicator 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