Welcome to mirror list, hosted at ThFree Co, Russian Federation.

get_integrations.query.graphql « queries « graphql « alerts_settings « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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
      }
    }
  }
}