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