debian-mirror-gitlab/app/assets/javascripts/boards/graphql/project_board_iterations.query.graphql
2021-11-11 11:23:49 +05:30

10 lines
211 B
GraphQL

query ProjectBoardIterations($fullPath: ID!, $title: String) {
project(fullPath: $fullPath) {
iterations(includeAncestors: true, title: $title) {
nodes {
id
title
}
}
}
}