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

group_milestones.query.graphql « graphql « boards « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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
        }
      }
    }
  }
}