8 lines
171 B
GraphQL
8 lines
171 B
GraphQL
|
query mergeRequestSidebarDetails($fullPath: ID!, $iid: String!) {
|
||
|
project(fullPath: $fullPath) {
|
||
|
mergeRequest(iid: $iid) {
|
||
|
iid # currently unused.
|
||
|
}
|
||
|
}
|
||
|
}
|