summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/alert_management/graphql/fragments/detail_item.fragment.graphql
blob: 18fab429164ca96840b579ccf1ffe0c7ed426715 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#import "./list_item.fragment.graphql"
#import "./alert_note.fragment.graphql"

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