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_editor/graphql/queries/available_branches.graphql')
-rw-r--r--app/assets/javascripts/pipeline_editor/graphql/queries/available_branches.graphql12
1 files changed, 0 insertions, 12 deletions
diff --git a/app/assets/javascripts/pipeline_editor/graphql/queries/available_branches.graphql b/app/assets/javascripts/pipeline_editor/graphql/queries/available_branches.graphql
deleted file mode 100644
index 46e9b108b41..00000000000
--- a/app/assets/javascripts/pipeline_editor/graphql/queries/available_branches.graphql
+++ /dev/null
@@ -1,12 +0,0 @@
-query getAvailableBranches(
- $limit: Int!
- $offset: Int!
- $projectFullPath: ID!
- $searchPattern: String!
-) {
- project(fullPath: $projectFullPath) {
- repository {
- branchNames(limit: $limit, offset: $offset, searchPattern: $searchPattern)
- }
- }
-}