debian-mirror-gitlab/app/assets/javascripts/boards/graphql/project_board_milestones.query.graphql

12 lines
234 B
GraphQL
Raw Normal View History

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
}
}
}
}