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

findIncidentsByIndicators

Active incidents already covering any of the given indicator values (duplicate guard).

Examples

query FindIncidentsByIndicators($values: [String!]!) {
  findIncidentsByIndicators(values: $values) {
    caseId
    name
    status
    matchedValue
  }
}

Variables

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

{
  "values": ["example"]
}

Arguments

You can use the following argument(s) to customize your findIncidentsByIndicators query.

Argument
Description
Supported fields

values [String!]! required

Fields

Return type: [IncidentMatch!]!

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

Field
Description
Supported fields

caseId String!

name String!

matchedValue String!

Last updated