gitlab/ee/app/assets/javascripts/roadmap/queries/groupMilestones.query.graphql
2021-11-08 04:55:59 +00:00

28 lines
535 B
GraphQL

query groupMilestonesEE(
$fullPath: ID!
$state: MilestoneStateEnum
$timeframe: Timeframe
$includeDescendants: Boolean
) {
group(fullPath: $fullPath) {
id
name
milestones(state: $state, includeDescendants: $includeDescendants, timeframe: $timeframe) {
edges {
node {
id
description
title
state
dueDate
startDate
webPath
projectMilestone
groupMilestone
subgroupMilestone
}
}
}
}
}