debian-mirror-gitlab/app/assets/javascripts/sidebar/queries/sidebar_details_mr.query.graphql

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

10 lines
187 B
GraphQL
Raw Normal View History

2021-04-17 20:07:23 +05:30
query mergeRequestSidebarDetails($fullPath: ID!, $iid: String!) {
project(fullPath: $fullPath) {
2022-01-26 12:08:38 +05:30
id
2021-04-17 20:07:23 +05:30
mergeRequest(iid: $iid) {
2022-01-26 12:08:38 +05:30
id
2021-04-17 20:07:23 +05:30
iid # currently unused.
}
}
}