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