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

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