debian-mirror-gitlab/app/assets/javascripts/alert_management/graphql/fragments/detail_item.fragment.graphql

31 lines
453 B
GraphQL
Raw Normal View History

2021-03-08 18:12:59 +05:30
#import "~/graphql_shared/fragments/alert.fragment.graphql"
#import "~/graphql_shared/fragments/alert_note.fragment.graphql"
2020-05-24 23:13:21 +05:30
fragment AlertDetailItem on AlertManagementAlert {
...AlertListItem
createdAt
monitoringTool
2020-07-28 23:09:34 +05:30
metricsDashboardUrl
2020-05-24 23:13:21 +05:30
service
description
updatedAt
2020-07-28 23:09:34 +05:30
endedAt
2021-01-03 14:25:43 +05:30
hosts
environment {
name
path
}
2020-05-24 23:13:21 +05:30
details
2020-10-24 23:57:45 +05:30
runbook
todos {
nodes {
id
}
}
2020-06-23 00:09:42 +05:30
notes {
nodes {
...AlertNote
}
}
2020-05-24 23:13:21 +05:30
}