17 lines
268 B
GraphQL
17 lines
268 B
GraphQL
|
query BoardBlockingIssues($id: IssueID!) {
|
||
|
issuable: issue(id: $id) {
|
||
|
__typename
|
||
|
id
|
||
|
blockingIssuables: blockedByIssues {
|
||
|
__typename
|
||
|
nodes {
|
||
|
id
|
||
|
iid
|
||
|
title
|
||
|
reference(full: true)
|
||
|
webUrl
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|