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