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:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-08-24 09:10:15 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-08-24 09:10:15 +0300
commit273d780f9ede8f6ed5ebbd4f81c8a391a55f882a (patch)
treebf1f9c065bcb3c3d0c7f8e049587e8e7fecbee46 /app/assets/javascripts/graphql_shared
parented621e6801d74097e2da08d2afc7574261bb7da1 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/graphql_shared')
-rw-r--r--app/assets/javascripts/graphql_shared/fragments/epic.fragment.graphql10
1 files changed, 10 insertions, 0 deletions
diff --git a/app/assets/javascripts/graphql_shared/fragments/epic.fragment.graphql b/app/assets/javascripts/graphql_shared/fragments/epic.fragment.graphql
new file mode 100644
index 00000000000..286ebbd019e
--- /dev/null
+++ b/app/assets/javascripts/graphql_shared/fragments/epic.fragment.graphql
@@ -0,0 +1,10 @@
+fragment EpicNode on Epic {
+ id
+ iid
+ title
+ state
+ reference
+ webUrl
+ createdAt
+ closedAt
+}