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

search_milestones.query.graphql « queries « issues_list « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 91f74fd220b7c8d1d302e10f03da4d07c6db6176 (plain)
1
2
3
4
5
6
7
8
9
10
query searchMilestones($projectPath: ID!, $search: String) {
  project(fullPath: $projectPath) {
    milestones(searchTitle: $search, includeAncestors: true) {
      nodes {
        id
        title
      }
    }
  }
}