summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/alert_details/graphql/queries/alert_sidebar_details.query.graphql
blob: da5f1a00e11a7a579a6dc46c901cb5074205b775 (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 alertDetails($fullPath: ID!, $alertId: String) {
  project(fullPath: $fullPath) {
    alertManagementAlerts(iid: $alertId) {
      nodes {
        ...AlertDetailItem
        assignees {
          nodes {
            ...User
          }
        }
      }
    }
  }
}