summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/boards/graphql/project_milestones.query.graphql
blob: 724b7f5a34c81961404b5ee5d2fa5de70faffa3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
query projectMilestones(
  $fullPath: ID!
  $state: MilestoneStateEnum
  $includeAncestors: Boolean
  $searchTitle: String
) {
  project(fullPath: $fullPath) {
    milestones(state: $state, includeAncestors: $includeAncestors, searchTitle: $searchTitle) {
      edges {
        node {
          id
          title
        }
      }
    }
  }
}