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