11 lines
233 B
GraphQL
11 lines
233 B
GraphQL
query mergeRequestReference($fullPath: ID!, $iid: String!) {
|
|
workspace: project(fullPath: $fullPath) {
|
|
__typename
|
|
id
|
|
issuable: mergeRequest(iid: $iid) {
|
|
__typename
|
|
id
|
|
reference(full: true)
|
|
}
|
|
}
|
|
}
|