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

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

10 lines
148 B
GraphQL
Raw Normal View History

2021-12-11 22:18:48 +05:30
query sidebarDetails($fullPath: ID!, $iid: String!) {
2020-07-28 23:09:34 +05:30
project(fullPath: $fullPath) {
2022-01-26 12:08:38 +05:30
id
2020-07-28 23:09:34 +05:30
issue(iid: $iid) {
2022-01-26 12:08:38 +05:30
id
2020-04-08 14:13:33 +05:30
iid
}
}
}