13 lines
272 B
GraphQL
13 lines
272 B
GraphQL
#import "./milestone.fragment.graphql"
|
|
|
|
query projectIssueMilestone($fullPath: ID!, $iid: String!) {
|
|
workspace: project(fullPath: $fullPath) {
|
|
id
|
|
issuable: issue(iid: $iid) {
|
|
id
|
|
attribute: milestone {
|
|
...MilestoneFragment
|
|
}
|
|
}
|
|
}
|
|
}
|