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

extractIncidentFromUrls

Auto-fill an incident draft from up to 3 advisory/event URLs. Returns an editable draft; never persists.

Examples

mutation ExtractIncidentFromUrls($urls: [String!]!) {
  extractIncidentFromUrls(urls: $urls) {
    name
    description
    type
    severity
    publishedDate
    indicators {
      kind
      value
      versionRange
      fixedVersions
      severity
      cvssScore
    }
    confidence
    sourceUrls
    sources {
      url
      via
      ok
      indicatorCount
    }
    unfilledFields
    warnings
  }
}

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 extractIncidentFromUrls mutation.

Argument
Description
Supported fields

urls [String!]! required

Fields

Return type: ExtractedIncidentDraft!

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

Field
Description
Supported fields

name String

description String

publishedDate String

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

confidence String!

sourceUrls [String!]!

url String! via String! ok Boolean! indicatorCount Float

unfilledFields [String!]!

warnings [String!]!

Last updated