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

get_incidents.query.graphql « queries « graphql « incidents « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0f56e8640bd1cf57e61621f69b5170ebf48042ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
query getIncidents(
  $projectPath: ID!
  $issueTypes: [IssueType!]
  $sort: IssueSort
  $status: IssuableState
  $firstPageSize: Int
  $lastPageSize: Int
  $prevPageCursor: String = ""
  $nextPageCursor: String = ""
  $searchTerm: String
) {
  project(fullPath: $projectPath) {
    issues(
      search: $searchTerm
      types: $issueTypes
      sort: $sort
      state: $status
      first: $firstPageSize
      last: $lastPageSize
      after: $nextPageCursor
      before: $prevPageCursor
    ) {
      nodes {
        iid
        title
        createdAt
        state
        labels {
          nodes {
            title
            color
          }
        }
        assignees {
          nodes {
            name
            username
            avatarUrl
            webUrl
          }
        }
        statusPagePublishedIncident
      }
      pageInfo {
        hasNextPage
        endCursor
        hasPreviousPage
        startCursor
      }
    }
  }
}