Welcome to mirror list, hosted at ThFree Co, Russian Federation.

get_timeline_events.query.graphql « queries « graphql « incidents « components « show « issues « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: baeb81745ab07a3ca2443b84d096bd4a38937139 (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
        note
        noteHtml
        action
        occurredAt
        createdAt
        timelineEventTags {
          nodes {
            id
            name
          }
        }
      }
    }
  }
}