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

alert_sidebar_details.query.graphql « queries « graphql « alert_details « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0c26fcc0ab272f7a47456a942f7fff5b1169104e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#import "~/graphql_shared/fragments/alert_detail_item.fragment.graphql"
#import "~/graphql_shared/fragments/user.fragment.graphql"

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