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

getIncidentComments

Comments on one incident, newest first.

Examples

query GetIncidentComments($incidentId: String!) {
  getIncidentComments(incidentId: $incidentId) {
    items {
      id
      incidentId
      text
      authorId
      authorName
      authorEmail
      edited
      createdAt
      updatedAt
    }
    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"
}

Arguments

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

Argument
Description
Supported fields

incidentId String! required

Fields

Return type: IncidentCommentsConnection!

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

Field
Description
Supported fields

id String! incidentId String! text String! authorId String! authorName String authorEmail String edited Boolean! createdAt DateTime! updatedAt DateTime

totalCount Int!

hasMore Boolean!

Last updated