debian-mirror-gitlab/app/assets/javascripts/issuable/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
308 B
GraphQL
Raw Normal View History

2022-07-23 23:45:48 +05:30
query mergeRequest($projectPath: ID!, $iid: String!) {
2019-07-07 11:18:12 +05:30
project(fullPath: $projectPath) {
2022-01-26 12:08:38 +05:30
id
2022-07-23 23:45:48 +05:30
mergeRequest(iid: $iid) {
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
}
}
}
}
}