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

group_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: 6fe8bb799d62ea5ced16ec650cbd090ba4dfde93 (plain)
1
2
3
4
5
6
7
8
9
10
11
query GroupBoardMilestones($fullPath: ID!, $searchTerm: String, $state: MilestoneStateEnum) {
  group(fullPath: $fullPath) {
    id
    milestones(includeAncestors: true, searchTitle: $searchTerm, state: $state) {
      nodes {
        id
        title
      }
    }
  }
}