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

project_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: 61c9ddded9b094b34db413ac0183c6c20b86cfb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
query boardProjectMilestones(
  $fullPath: ID!
  $state: MilestoneStateEnum
  $includeAncestors: Boolean
  $searchTitle: String
) {
  project(fullPath: $fullPath) {
    milestones(state: $state, includeAncestors: $includeAncestors, searchTitle: $searchTitle) {
      edges {
        node {
          id
          title
        }
      }
    }
  }
}