debian-mirror-gitlab/app/assets/javascripts/alerts_settings/graphql/queries/get_integrations.query.graphql

13 lines
239 B
GraphQL

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