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/boards/graphql/group_milestones.query.graphql')
-rw-r--r--app/assets/javascripts/boards/graphql/group_milestones.query.graphql17
1 files changed, 0 insertions, 17 deletions
diff --git a/app/assets/javascripts/boards/graphql/group_milestones.query.graphql b/app/assets/javascripts/boards/graphql/group_milestones.query.graphql
deleted file mode 100644
index f2ab12ef4a7..00000000000
--- a/app/assets/javascripts/boards/graphql/group_milestones.query.graphql
+++ /dev/null
@@ -1,17 +0,0 @@
-query groupMilestones(
- $fullPath: ID!
- $state: MilestoneStateEnum
- $includeDescendants: Boolean
- $searchTitle: String
-) {
- group(fullPath: $fullPath) {
- milestones(state: $state, includeDescendants: $includeDescendants, searchTitle: $searchTitle) {
- edges {
- node {
- id
- title
- }
- }
- }
- }
-}