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/pipeline_schedules/graphql/queries/get_pipeline_schedules.query.graphql')
-rw-r--r--app/assets/javascripts/pipeline_schedules/graphql/queries/get_pipeline_schedules.query.graphql40
1 files changed, 0 insertions, 40 deletions
diff --git a/app/assets/javascripts/pipeline_schedules/graphql/queries/get_pipeline_schedules.query.graphql b/app/assets/javascripts/pipeline_schedules/graphql/queries/get_pipeline_schedules.query.graphql
deleted file mode 100644
index 7d9d658b1b6..00000000000
--- a/app/assets/javascripts/pipeline_schedules/graphql/queries/get_pipeline_schedules.query.graphql
+++ /dev/null
@@ -1,40 +0,0 @@
-query getPipelineSchedulesQuery($projectPath: ID!) {
- project(fullPath: $projectPath) {
- id
- pipelineSchedules {
- nodes {
- id
- description
- forTag
- refPath
- refForDisplay
- lastPipeline {
- id
- detailedStatus {
- id
- group
- icon
- label
- text
- detailsPath
- }
- }
- active
- nextRunAt
- realNextRun
- owner {
- id
- avatarUrl
- name
- webPath
- }
- userPermissions {
- playPipelineSchedule
- takeOwnershipPipelineSchedule
- updatePipelineSchedule
- adminPipelineSchedule
- }
- }
- }
- }
-}