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

group_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: 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
      }
    }
  }
}