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