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>2021-12-02 18:10:48 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-12-02 18:10:48 +0300
commit3a52eefc27143af8a2b3838a159c52484ca4bc8b (patch)
treebb93b151f3bb91b300e4ee7fde249f324a0d5f9c /app/graphql/queries
parent02e597943fcd131d51b63bfa20a17cf8438adde2 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/graphql/queries')
-rw-r--r--app/graphql/queries/epic/epic_children.query.graphql23
1 files changed, 21 insertions, 2 deletions
diff --git a/app/graphql/queries/epic/epic_children.query.graphql b/app/graphql/queries/epic/epic_children.query.graphql
index 9e76af48152..c35abcabe44 100644
--- a/app/graphql/queries/epic/epic_children.query.graphql
+++ b/app/graphql/queries/epic/epic_children.query.graphql
@@ -45,6 +45,16 @@ fragment EpicNode on Epic {
confidential
hasChildren
hasIssues
+ labels {
+ __typename
+ nodes {
+ __typename
+ color
+ description
+ textColor
+ title
+ }
+ }
group {
__typename
id
@@ -72,8 +82,7 @@ query childItems(
edges {
__typename
# We have an id in deeply nested fragment
- # TODO: Uncomment next line when https://gitlab.com/gitlab-org/gitlab/-/merge_requests/75220 is merged and the rule is enabled
- # # eslint-disable-next-line @graphql-eslint/require-id-when-available
+ # eslint-disable-next-line @graphql-eslint/require-id-when-available
node {
__typename
...EpicNode
@@ -127,6 +136,16 @@ query childItems(
dueDate
}
healthStatus
+ labels {
+ __typename
+ nodes {
+ __typename
+ color
+ description
+ textColor
+ title
+ }
+ }
}
}
pageInfo {