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