12 lines
268 B
GraphQL
12 lines
268 B
GraphQL
|
#import "../fragments/detailItem.fragment.graphql"
|
||
|
|
||
|
query alertDetails($fullPath: ID!, $alertId: String) {
|
||
|
project(fullPath: $fullPath) {
|
||
|
alertManagementAlerts(iid: $alertId) {
|
||
|
nodes {
|
||
|
...AlertDetailItem
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|