debian-mirror-gitlab/app/assets/javascripts/boards/graphql/project_milestones.query.graphql

18 lines
349 B
GraphQL
Raw Normal View History

2021-12-11 22:18:48 +05:30
query boardProjectMilestones(
2021-02-22 17:27:13 +05:30
$fullPath: ID!
$state: MilestoneStateEnum
2021-03-11 19:13:27 +05:30
$includeAncestors: Boolean
2021-02-22 17:27:13 +05:30
$searchTitle: String
) {
2021-03-11 19:13:27 +05:30
project(fullPath: $fullPath) {
milestones(state: $state, includeAncestors: $includeAncestors, searchTitle: $searchTitle) {
2021-02-22 17:27:13 +05:30
edges {
node {
id
title
}
}
}
}
}