18 lines
356 B
GraphQL
18 lines
356 B
GraphQL
query boardProjectMilestones(
|
|
$fullPath: ID!
|
|
$state: MilestoneStateEnum
|
|
$includeAncestors: Boolean
|
|
$searchTitle: String
|
|
) {
|
|
project(fullPath: $fullPath) {
|
|
id
|
|
milestones(state: $state, includeAncestors: $includeAncestors, searchTitle: $searchTitle) {
|
|
edges {
|
|
node {
|
|
id
|
|
title
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|