18 lines
346 B
GraphQL
18 lines
346 B
GraphQL
|
query groupMilestones(
|
||
|
$fullPath: ID!
|
||
|
$state: MilestoneStateEnum
|
||
|
$includeDescendants: Boolean
|
||
|
$searchTitle: String
|
||
|
) {
|
||
|
group(fullPath: $fullPath) {
|
||
|
milestones(state: $state, includeDescendants: $includeDescendants, searchTitle: $searchTitle) {
|
||
|
edges {
|
||
|
node {
|
||
|
id
|
||
|
title
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|