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

get_count_by_status.query.graphql « queries « graphql « alert_management « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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
    }
  }
}