summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/alerts_settings/graphql/queries/get_http_integrations.query.graphql
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
      }
    }
  }
}