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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/issue_show/components/incidents/graphql/queries/get_alert.graphql')
-rw-r--r--app/assets/javascripts/issue_show/components/incidents/graphql/queries/get_alert.graphql22
1 files changed, 0 insertions, 22 deletions
diff --git a/app/assets/javascripts/issue_show/components/incidents/graphql/queries/get_alert.graphql b/app/assets/javascripts/issue_show/components/incidents/graphql/queries/get_alert.graphql
deleted file mode 100644
index 938b90b3f7c..00000000000
--- a/app/assets/javascripts/issue_show/components/incidents/graphql/queries/get_alert.graphql
+++ /dev/null
@@ -1,22 +0,0 @@
-query getAlert($iid: String!, $fullPath: ID!) {
- project(fullPath: $fullPath) {
- issue(iid: $iid) {
- id
- alertManagementAlert {
- iid
- title
- detailsUrl
- severity
- status
- startedAt
- eventCount
- monitoringTool
- service
- description
- endedAt
- hosts
- details
- }
- }
- }
-}