11 lines
207 B
GraphQL
11 lines
207 B
GraphQL
|
query GroupBoardIterations($fullPath: ID!, $title: String) {
|
||
|
group(fullPath: $fullPath) {
|
||
|
iterations(includeAncestors: true, title: $title) {
|
||
|
nodes {
|
||
|
id
|
||
|
title
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|