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/queries/board_lists.query.graphql')
-rw-r--r--app/assets/javascripts/boards/queries/board_lists.query.graphql28
1 files changed, 0 insertions, 28 deletions
diff --git a/app/assets/javascripts/boards/queries/board_lists.query.graphql b/app/assets/javascripts/boards/queries/board_lists.query.graphql
deleted file mode 100644
index 88425e9a9c1..00000000000
--- a/app/assets/javascripts/boards/queries/board_lists.query.graphql
+++ /dev/null
@@ -1,28 +0,0 @@
-#import "ee_else_ce/boards/queries/board_list.fragment.graphql"
-
-query ListIssues(
- $fullPath: ID!
- $boardId: ID!
- $filters: BoardIssueInput
- $isGroup: Boolean = false
- $isProject: Boolean = false
-) {
- group(fullPath: $fullPath) @include(if: $isGroup) {
- board(id: $boardId) {
- lists(issueFilters: $filters) {
- nodes {
- ...BoardListFragment
- }
- }
- }
- }
- project(fullPath: $fullPath) @include(if: $isProject) {
- board(id: $boardId) {
- lists(issueFilters: $filters) {
- nodes {
- ...BoardListFragment
- }
- }
- }
- }
-}