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

detail_item.fragment.graphql « fragments « 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: 92eb828bdf8a8d9a22160eb854ee9cb962370d2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#import "./list_item.fragment.graphql"
#import "./alert_note.fragment.graphql"

fragment AlertDetailItem on AlertManagementAlert {
  ...AlertListItem
  createdAt
  monitoringTool
  metricsDashboardUrl
  service
  description
  updatedAt
  endedAt
  details
  todos {
    nodes {
      id
    }
  }
  notes {
    nodes {
      ...AlertNote
    }
  }
}