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

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

10 lines
168 B
GraphQL
Raw Normal View History

2023-07-09 08:55:56 +05:30
query mergeRequestId($projectPath: ID!, $iid: String!) {
project(fullPath: $projectPath) {
id
mergeRequest(iid: $iid) {
id
preparedAt
}
}
}