summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/incidents/graphql/queries/get_count_by_status.query.graphql
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
    }
  }
}