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

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

10 lines
186 B
GraphQL
Raw Normal View History

2021-04-17 20:07:23 +05:30
query issueReference($fullPath: ID!, $iid: String) {
workspace: project(fullPath: $fullPath) {
2022-01-26 12:08:38 +05:30
id
2021-04-17 20:07:23 +05:30
issuable: issue(iid: $iid) {
id
reference(full: true)
}
}
}