summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/graphql_shared/fragments/alert_detail_item.fragment.graphql
blob: 794fe0a61515168a1bfd8174100f5167de1f9cfc (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
26
27
28
29
30
31
#import "~/graphql_shared/fragments/alert.fragment.graphql"
#import "~/graphql_shared/fragments/alert_note.fragment.graphql"

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