debian-mirror-gitlab/app/assets/javascripts/boards/graphql/board_blocking_issues.query.graphql

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

15 lines
236 B
GraphQL
Raw Normal View History

2021-04-29 21:17:54 +05:30
query BoardBlockingIssues($id: IssueID!) {
issuable: issue(id: $id) {
id
blockingIssuables: blockedByIssues {
nodes {
id
iid
title
reference(full: true)
webUrl
}
}
}
}