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