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