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

project_board_milestones.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: e456823d78af0401d341e3f3b7520e0e23a34e90 (plain)
1
2
3
4
5
6
7
8
9
10
11
query ProjectBoardMilestones($fullPath: ID!, $searchTerm: String) {
  project(fullPath: $fullPath) {
    id
    milestones(searchTitle: $searchTerm, includeAncestors: true) {
      nodes {
        id
        title
      }
    }
  }
}