2021-10-27 15:23:28 +05:30
|
|
|
query ProjectBoardMilestones($fullPath: ID!, $searchTerm: String) {
|
|
|
|
project(fullPath: $fullPath) {
|
2022-01-26 12:08:38 +05:30
|
|
|
id
|
2021-10-27 15:23:28 +05:30
|
|
|
milestones(searchTitle: $searchTerm, includeAncestors: true) {
|
|
|
|
nodes {
|
|
|
|
id
|
|
|
|
title
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|