summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/issues_list/queries/search_milestones.query.graphql
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
      }
    }
  }
}