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: bc4e8414bfcc0ffd4742192d1f61881acd439d8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
query GetTimelineEvents($fullPath: ID!, $incidentId: IssueID!) {
  project(fullPath: $fullPath) {
    id
    incidentManagementTimelineEvents(incidentId: $incidentId) {
      nodes {
        id
        note
        noteHtml
        action
        occurredAt
        createdAt
      }
    }
  }
}