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