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

alert_details.query.graphql « queries « graphql_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5ee2cf7ca44f02d7f37a713a9615c45aef5ed655 (plain)
1
2
3
4
5
6
7
8
9
10
11
#import "../fragments/alert_detail_item.fragment.graphql"

query alertDetails($fullPath: ID!, $alertId: String) {
  project(fullPath: $fullPath) {
    alertManagementAlerts(iid: $alertId) {
      nodes {
        ...AlertDetailItem
      }
    }
  }
}