summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/issues/show/components/incidents/graphql/queries/get_timeline_events.query.graphql
blob: 7e049d98c1aa38a6b6681953d26212a00a8a56a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
query GetTimelineEvents($fullPath: ID!, $incidentId: IssueID!) {
  project(fullPath: $fullPath) {
    id
    incidentManagementTimelineEvents(incidentId: $incidentId) {
      nodes {
        id
        author {
          id
          name
          username
        }
        note
        noteHtml
        action
        occurredAt
        createdAt
        updatedAt
      }
    }
  }
}