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