12 lines
271 B
GraphQL
12 lines
271 B
GraphQL
|
#import "../fragments/listItem.fragment.graphql"
|
||
|
|
||
|
query getAlerts($projectPath: ID!, $statuses: [AlertManagementStatus!]) {
|
||
|
project(fullPath: $projectPath) {
|
||
|
alertManagementAlerts(statuses: $statuses) {
|
||
|
nodes {
|
||
|
...AlertListItem
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|