Welcome to mirror list, hosted at ThFree Co, Russian Federation.

project_board_iterations.query.graphql « graphql « boards « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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
      }
    }
  }
}