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