summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/boards/graphql/board_blocking_epics.query.graphql
blob: 071a6d7410fe6d92f4d65634b537bb62f605076c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
        }
      }
    }
  }
}