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/issue.fragment.graphql')
-rw-r--r--app/assets/javascripts/boards/queries/issue.fragment.graphql27
1 files changed, 0 insertions, 27 deletions
diff --git a/app/assets/javascripts/boards/queries/issue.fragment.graphql b/app/assets/javascripts/boards/queries/issue.fragment.graphql
deleted file mode 100644
index 4b429f875a6..00000000000
--- a/app/assets/javascripts/boards/queries/issue.fragment.graphql
+++ /dev/null
@@ -1,27 +0,0 @@
-#import "~/graphql_shared/fragments/user.fragment.graphql"
-
-fragment IssueNode on Issue {
- id
- iid
- title
- referencePath: reference(full: true)
- dueDate
- timeEstimate
- confidential
- webUrl
- subscribed
- relativePosition
- assignees {
- nodes {
- ...User
- }
- }
- labels {
- nodes {
- id
- title
- color
- description
- }
- }
-}