debian-mirror-gitlab/app/assets/javascripts/alerts_settings/graphql/queries/get_integrations.query.graphql
2021-01-29 00:20:46 +05:30

12 lines
232 B
GraphQL

#import "../fragments/integration_item.fragment.graphql"
query getIntegrations($projectPath: ID!) {
project(fullPath: $projectPath) {
alertManagementIntegrations {
nodes {
...IntegrationItem
}
}
}
}