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

19 lines
356 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) {
2022-01-26 12:08:38 +05:30
id
2021-03-11 19:13:27 +05:30
milestones(state: $state, includeAncestors: $includeAncestors, searchTitle: $searchTitle) {
2021-02-22 17:27:13 +05:30
edges {
node {
id
title
}
}
}
}
}