debian-mirror-gitlab/app/assets/javascripts/boards/graphql/board_blocking_epics.query.graphql
2022-10-11 01:57:18 +05:30

17 lines
312 B
GraphQL

query BoardBlockingEpics($fullPath: ID!, $iid: ID) {
group(fullPath: $fullPath) {
id
issuable: epic(iid: $iid) {
id
blockingIssuables: blockedByEpics {
nodes {
id
iid
title
reference(full: true)
webUrl
}
}
}
}
}