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

get_count_by_status.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: fda8a65d4a486b4f26981bd8aaabf1e1a3451d52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
query getIncidentsCountByStatus(
  $searchTerm: String
  $projectPath: ID!
  $issueTypes: [IssueType!]
  $authorUsername: String = ""
  $assigneeUsername: String = ""
) {
  project(fullPath: $projectPath) {
    id
    issueStatusCounts(
      search: $searchTerm
      types: $issueTypes
      authorUsername: $authorUsername
      assigneeUsername: $assigneeUsername
    ) {
      all
      opened
      closed
    }
  }
}