2021-02-22 17:27:13 +05:30
|
|
|
query groupMilestones(
|
|
|
|
$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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|