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

getIncidentEvents

Activity feed events for one incident, newest first.

Examples

query GetIncidentEvents($incidentId: String!, $limit: Int, $offset: Int) {
  getIncidentEvents(incidentId: $incidentId, limit: $limit, offset: $offset) {
    items {
      id
      incidentId
      kind
      message
      actor
      createdAt
    }
    totalCount
    hasMore
  }
}

Variables

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

{
  "incidentId": "example",
  "limit": 100,
  "offset": 0
}

Arguments

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

Argument
Description
Supported fields

incidentId String! required

limit Int

offset Int

Fields

Return type: IncidentEventsConnection!

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

Field
Description
Supported fields

id String! incidentId String! kind IncidentEventKind! message String! actor String! createdAt DateTime!

totalCount Int!

hasMore Boolean!

Last updated