debian-mirror-gitlab/app/assets/javascripts/mr_popover/queries/merge_request.query.graphql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
332 B
GraphQL
Raw Normal View History

2019-09-30 21:07:59 +05:30
query mergeRequest($projectPath: ID!, $mergeRequestIID: String!) {
2019-07-07 11:18:12 +05:30
project(fullPath: $projectPath) {
2022-01-26 12:08:38 +05:30
id
2019-07-07 11:18:12 +05:30
mergeRequest(iid: $mergeRequestIID) {
2022-01-26 12:08:38 +05:30
id
title
2019-07-07 11:18:12 +05:30
createdAt
state
headPipeline {
2022-01-26 12:08:38 +05:30
id
2019-07-07 11:18:12 +05:30
detailedStatus {
2022-01-26 12:08:38 +05:30
id
2019-07-07 11:18:12 +05:30
icon
group
}
}
}
}
}