summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/boards/graphql/group_board_iterations.query.graphql
blob: 1c382c4747b8e851e46915b96c8b7aed1d558a7e (plain)
1
2
3
4
5
6
7
8
9
10
query GroupBoardIterations($fullPath: ID!, $title: String) {
  group(fullPath: $fullPath) {
    iterations(includeAncestors: true, title: $title) {
      nodes {
        id
        title
      }
    }
  }
}