Commit b751e2b4 authored by Simon Knox's avatar Simon Knox Committed by Kushal Pandya

Don't show ancestor iterations on subgroups

We eventually want to show a subset of these - we
want to include ancestor iterations if they have
issues from the current subgroup assigned
parent 41f5da1d
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