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

get_http_integration.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: 7299e6836d44ef45854f928492186a63de142cef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#import "ee_else_ce/alerts_settings/graphql/fragments/http_integration_payload_data.fragment.graphql"

query getHttpIntegration($projectPath: ID!, $id: ID) {
  project(fullPath: $projectPath) {
    id
    alertManagementHttpIntegrations(id: $id) {
      nodes {
        ...HttpIntegrationPayloadData
      }
    }
  }
}