Commit abaf6c04 authored by Kushal Pandya's avatar Kushal Pandya

Merge branch 'bw-adjust-child-items-query' into 'master'

Remove limit of 50 in child_items query

See merge request gitlab-org/gitlab-ee!14009
parents 24315371 d1ab0100
...@@ -12,7 +12,7 @@ query childItems($fullPath: ID!, $iid: ID) { ...@@ -12,7 +12,7 @@ query childItems($fullPath: ID!, $iid: ID) {
adminEpic adminEpic
createEpic createEpic
} }
children(first: 50) { children {
edges { edges {
node { node {
id id
...@@ -36,7 +36,7 @@ query childItems($fullPath: ID!, $iid: ID) { ...@@ -36,7 +36,7 @@ query childItems($fullPath: ID!, $iid: ID) {
} }
} }
} }
issues(first: 50) { issues {
edges { edges {
node { node {
iid iid
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment