debian-mirror-gitlab/app/assets/javascripts/issuable/popover/queries/issue.query.graphql

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

12 lines
175 B
GraphQL
Raw Normal View History

2022-07-23 23:45:48 +05:30
query issue($projectPath: ID!, $iid: String!) {
project(fullPath: $projectPath) {
id
issue(iid: $iid) {
id
title
createdAt
state
}
}
}