debian-mirror-gitlab/app/assets/javascripts/alert_management/graphql/queries/get_count_by_status.query.graphql

12 lines
242 B
GraphQL
Raw Normal View History

2020-06-23 00:09:42 +05:30
query getAlertsCount($projectPath: ID!) {
project(fullPath: $projectPath) {
alertManagementAlertStatusCounts {
all
open
acknowledged
resolved
triggered
}
}
}