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