11 lines
273 B
GraphQL
11 lines
273 B
GraphQL
query GroupBoardMilestones($fullPath: ID!, $searchTerm: String, $state: MilestoneStateEnum) {
|
|
group(fullPath: $fullPath) {
|
|
id
|
|
milestones(includeAncestors: true, searchTitle: $searchTerm, state: $state) {
|
|
nodes {
|
|
id
|
|
title
|
|
}
|
|
}
|
|
}
|
|
}
|