debian-mirror-gitlab/app/assets/javascripts/alert_management/graphql/queries/getAlerts.query.graphql
2020-05-24 23:13:21 +05:30

12 lines
271 B
GraphQL

#import "../fragments/listItem.fragment.graphql"
query getAlerts($projectPath: ID!, $statuses: [AlertManagementStatus!]) {
project(fullPath: $projectPath) {
alertManagementAlerts(statuses: $statuses) {
nodes {
...AlertListItem
}
}
}
}