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: 77b95bb8910788d1c7267bf4199234e248ec3e83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#import "../fragments/alert_detail_item.fragment.graphql"

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