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/monitoring/queries/get_annotations.query.graphql')
-rw-r--r--app/assets/javascripts/monitoring/queries/get_annotations.query.graphql27
1 files changed, 0 insertions, 27 deletions
diff --git a/app/assets/javascripts/monitoring/queries/get_annotations.query.graphql b/app/assets/javascripts/monitoring/queries/get_annotations.query.graphql
deleted file mode 100644
index 32b982ff195..00000000000
--- a/app/assets/javascripts/monitoring/queries/get_annotations.query.graphql
+++ /dev/null
@@ -1,27 +0,0 @@
-query getAnnotations(
- $projectPath: ID!
- $environmentName: String
- $dashboardPath: String!
- $startingFrom: Time!
-) {
- project(fullPath: $projectPath) {
- id
- environments(name: $environmentName) {
- nodes {
- id
- name
- metricsDashboard(path: $dashboardPath) {
- annotations(from: $startingFrom) {
- nodes {
- id
- description
- startingAt
- endingAt
- panelId
- }
- }
- }
- }
- }
- }
-}