Commit 71fd52c0 authored by Kushal Pandya's avatar Kushal Pandya

Merge branch 'psi-it-list-no-ancestor' into 'master'

Don't show ancestor iterations on subgroups

See merge request gitlab-org/gitlab!36909
parents 0d7681a3 b751e2b4
query GroupIteration($groupPath: ID!, $iid: ID!) { query GroupIteration($groupPath: ID!, $iid: ID!) {
group(fullPath: $groupPath) { group(fullPath: $groupPath) {
iterations(iid: $iid, first: 1) { iterations(iid: $iid, first: 1, includeAncestors: false) {
nodes { nodes {
title title
state state
......
query GroupIterations($fullPath: ID!, $state: IterationState!) { query GroupIterations($fullPath: ID!, $state: IterationState!) {
group(fullPath: $fullPath) { group(fullPath: $fullPath) {
iterations(state: $state, first: 20) { iterations(state: $state, first: 20, includeAncestors: false) {
nodes { nodes {
title title
state state
......
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