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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
239 B
GraphQL
Raw Normal View History

2021-01-29 00:20:46 +05:30
#import "../fragments/integration_item.fragment.graphql"
query getIntegrations($projectPath: ID!) {
project(fullPath: $projectPath) {
2022-01-26 12:08:38 +05:30
id
2021-01-29 00:20:46 +05:30
alertManagementIntegrations {
nodes {
...IntegrationItem
}
}
}
}