2021-09-04 01:27:46 +05:30
|
|
|
#import "./milestone.fragment.graphql"
|
|
|
|
|
|
|
|
query projectMilestones($fullPath: ID!, $title: String, $state: MilestoneStateEnum) {
|
|
|
|
workspace: project(fullPath: $fullPath) {
|
2022-01-26 12:08:38 +05:30
|
|
|
id
|
2021-09-30 23:02:18 +05:30
|
|
|
attributes: milestones(
|
|
|
|
searchTitle: $title
|
|
|
|
state: $state
|
|
|
|
sort: EXPIRED_LAST_DUE_DATE_ASC
|
|
|
|
first: 20
|
|
|
|
includeAncestors: true
|
|
|
|
) {
|
2021-09-04 01:27:46 +05:30
|
|
|
nodes {
|
|
|
|
...MilestoneFragment
|
|
|
|
state
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|