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: 0b784b104a84fd47a603a0b483fc1bff9c3ee2b6 (plain)
1
2
3
4
5
6
7
8
9
query getIncidentsCountByStatus($searchTerm: String, $projectPath: ID!, $issueTypes: [IssueType!]) {
  project(fullPath: $projectPath) {
    issueStatusCounts(search: $searchTerm, types: $issueTypes) {
      all
      opened
      closed
    }
  }
}