summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/alert_management/graphql/queries/get_count_by_status.query.graphql
blob: 5a6faea5cd808fa1e4a7c16d8a4bb18770e09533 (plain)
1
2
3
4
5
6
7
8
9
10
11
query getAlertsCount($searchTerm: String, $projectPath: ID!) {
  project(fullPath: $projectPath) {
    alertManagementAlertStatusCounts(search: $searchTerm) {
      all
      open
      acknowledged
      resolved
      triggered
    }
  }
}