2022-01-14 04:14:36 -05:00
|
|
|
query GroupBoardMilestones($fullPath: ID!, $searchTerm: String, $state: MilestoneStateEnum) {
|
2021-07-30 08:10:12 -04:00
|
|
|
group(fullPath: $fullPath) {
|
2021-11-30 10:14:19 -05:00
|
|
|
id
|
2022-01-14 04:14:36 -05:00
|
|
|
milestones(includeAncestors: true, searchTitle: $searchTerm, state: $state) {
|
2021-07-30 08:10:12 -04:00
|
|
|
nodes {
|
|
|
|
id
|
|
|
|
title
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|