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

details.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: 7c77715fad2dae20659c3a22fd0e943d3cf8ad49 (plain)
1
2
3
4
5
6
7
8
9
10
11
#import "../fragments/detailItem.fragment.graphql"

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