debian-mirror-gitlab/app/assets/javascripts/boards/graphql/group_board_iterations.query.graphql

11 lines
207 B
GraphQL
Raw Normal View History

2021-11-11 11:23:49 +05:30
query GroupBoardIterations($fullPath: ID!, $title: String) {
group(fullPath: $fullPath) {
iterations(includeAncestors: true, title: $title) {
nodes {
id
title
}
}
}
}