15 lines
311 B
GraphQL
15 lines
311 B
GraphQL
#import "./milestone.fragment.graphql"
|
|
|
|
query mergeRequestMilestone($fullPath: ID!, $iid: String!) {
|
|
workspace: project(fullPath: $fullPath) {
|
|
__typename
|
|
id
|
|
issuable: mergeRequest(iid: $iid) {
|
|
__typename
|
|
id
|
|
attribute: milestone {
|
|
...MilestoneFragment
|
|
}
|
|
}
|
|
}
|
|
}
|