14 lines
280 B
GraphQL
14 lines
280 B
GraphQL
query mergeRequest($projectPath: ID!, $mergeRequestIID: String!) {
|
|
project(fullPath: $projectPath) {
|
|
mergeRequest(iid: $mergeRequestIID) {
|
|
createdAt
|
|
state
|
|
headPipeline {
|
|
detailedStatus {
|
|
icon
|
|
group
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|