2020-06-23 00:09:42 +05:30
|
|
|
#import "../fragments/detail_item.fragment.graphql"
|
2020-05-24 23:13:21 +05:30
|
|
|
|
|
|
|
query alertDetails($fullPath: ID!, $alertId: String) {
|
|
|
|
project(fullPath: $fullPath) {
|
|
|
|
alertManagementAlerts(iid: $alertId) {
|
|
|
|
nodes {
|
|
|
|
...AlertDetailItem
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|