11 lines
211 B
GraphQL
11 lines
211 B
GraphQL
|
query ProjectBoardIterations($fullPath: ID!, $title: String) {
|
||
|
project(fullPath: $fullPath) {
|
||
|
iterations(includeAncestors: true, title: $title) {
|
||
|
nodes {
|
||
|
id
|
||
|
title
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|