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