debian-mirror-gitlab/app/assets/javascripts/sidebar/queries/project_milestones.query.graphql

14 lines
327 B
GraphQL
Raw Normal View History

2021-09-04 01:27:46 +05:30
#import "./milestone.fragment.graphql"
query projectMilestones($fullPath: ID!, $title: String, $state: MilestoneStateEnum) {
workspace: project(fullPath: $fullPath) {
__typename
attributes: milestones(searchTitle: $title, state: $state) {
nodes {
...MilestoneFragment
state
}
}
}
}