2021-03-11 19:13:27 +05:30
|
|
|
#import "../fragments/alert_detail_item.fragment.graphql"
|
2020-05-24 23:13:21 +05:30
|
|
|
|
|
|
|
query alertDetails($fullPath: ID!, $alertId: String) {
|
2020-07-28 23:09:34 +05:30
|
|
|
project(fullPath: $fullPath) {
|
2022-01-26 12:08:38 +05:30
|
|
|
id
|
2020-07-28 23:09:34 +05:30
|
|
|
alertManagementAlerts(iid: $alertId) {
|
|
|
|
nodes {
|
|
|
|
...AlertDetailItem
|
|
|
|
}
|
2020-05-24 23:13:21 +05:30
|
|
|
}
|
2020-07-28 23:09:34 +05:30
|
|
|
}
|
2020-05-24 23:13:21 +05:30
|
|
|
}
|