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