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: 1143050200c78ca4b63a0213e09a32fe362ecef6 (plain)
1
2
3
4
5
6
7
8
9
10
11
query getAlertsCount($projectPath: ID!) {
    project(fullPath: $projectPath) {
        alertManagementAlertStatusCounts {
            all
            open
            acknowledged
            resolved
            triggered
        }
    }
}