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: 40ec4c56171d1c3d73548f0a6180857d9d0ed0ae (plain)
1
2
3
4
5
6
7
8
9
10
11
query getAlertsCount($searchTerm: String, $projectPath: ID!, $assigneeUsername: String = "") {
  project(fullPath: $projectPath) {
    alertManagementAlertStatusCounts(search: $searchTerm, assigneeUsername: $assigneeUsername) {
      all
      open
      acknowledged
      resolved
      triggered
    }
  }
}