Welcome to mirror list, hosted at ThFree Co, Russian Federation.

getAlerts.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: 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
      }
    }
  }
}