summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/alert_management/graphql/queries/getAlerts.query.graphql
blob: 54b66389d5be9357e34bf13c23a48388fbe13578 (plain)
1
2
3
4
5
6
7
8
9
10
11
#import "../fragments/listItem.fragment.graphql"

query getAlerts($projectPath: ID!, $statuses: [AlertManagementStatus!]) {
  project(fullPath: $projectPath) {
      alertManagementAlerts(statuses: $statuses)  {
      nodes {
        ...AlertListItem
      }
    }
  }
}