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

get_http_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: 833a2d6c12f0ad147abdf7a8db2fc3fecc52cf49 (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"

# TODO: this query need to accept http integration id to request a sepcific integration
query getHttpIntegrations($projectPath: ID!) {
  project(fullPath: $projectPath) {
    alertManagementHttpIntegrations {
      nodes {
        ...HttpIntegrationPayloadData
      }
    }
  }
}