10 lines
168 B
GraphQL
10 lines
168 B
GraphQL
|
query mergeRequestId($projectPath: ID!, $iid: String!) {
|
||
|
project(fullPath: $projectPath) {
|
||
|
id
|
||
|
mergeRequest(iid: $iid) {
|
||
|
id
|
||
|
preparedAt
|
||
|
}
|
||
|
}
|
||
|
}
|