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

getIncidentStateComparison

History tab's Original-vs-Current comparison per evidence area.

Examples

query GetIncidentStateComparison($incidentId: String!) {
  getIncidentStateComparison(incidentId: $incidentId) {
    rows {
      area
      current
      original
      change
      secondaryCurrent
      isNested
    }
  }
}

Variables

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

{
  "incidentId": "example"
}

Arguments

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

Argument
Description
Supported fields

incidentId String! required

Fields

Return type: IncidentStateComparison!

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

Field
Description
Supported fields

area String! current Int! original Int! change Int! secondaryCurrent Int isNested Boolean!

Last updated