summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/alert_management/graphql/fragments/detail_item.fragment.graphql
blob: 0712ff12c2300e96a12055436ea511731b557943 (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
25
#import "./list_item.fragment.graphql"
#import "./alert_note.fragment.graphql"

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