summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/alerts_settings/graphql/queries/get_http_integration.query.graphql
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/alerts_settings/graphql/queries/get_http_integration.query.graphql')
-rw-r--r--app/assets/javascripts/alerts_settings/graphql/queries/get_http_integration.query.graphql11
1 files changed, 11 insertions, 0 deletions
diff --git a/app/assets/javascripts/alerts_settings/graphql/queries/get_http_integration.query.graphql b/app/assets/javascripts/alerts_settings/graphql/queries/get_http_integration.query.graphql
new file mode 100644
index 00000000000..d20a8b8334b
--- /dev/null
+++ b/app/assets/javascripts/alerts_settings/graphql/queries/get_http_integration.query.graphql
@@ -0,0 +1,11 @@
+#import "ee_else_ce/alerts_settings/graphql/fragments/http_integration_payload_data.fragment.graphql"
+
+query getHttpIntegration($projectPath: ID!, $id: ID) {
+ project(fullPath: $projectPath) {
+ alertManagementHttpIntegrations(id: $id) {
+ nodes {
+ ...HttpIntegrationPayloadData
+ }
+ }
+ }
+}