summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/alerts_settings/graphql/queries/get_integrations.query.graphql
blob: 228dd5fb17642aaa85bf8e41e38bbef6f4b21474 (plain)
1
2
3
4
5
6
7
8
9
10
11
#import "../fragments/integration_item.fragment.graphql"

query getIntegrations($projectPath: ID!) {
  project(fullPath: $projectPath) {
    alertManagementIntegrations {
      nodes {
        ...IntegrationItem
      }
    }
  }
}