summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/issuable_blocked_icon/graphql/blocking_epics.query.graphql
blob: 4b9a9243052c59683ee01bc88312ceca189a08a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
query BlockingEpics($fullPath: ID!, $iid: ID) {
  group(fullPath: $fullPath) {
    id
    issuable: epic(iid: $iid) {
      id
      blockingIssuables: blockedByEpics {
        nodes {
          id
          iid
          title
          reference(full: true)
          webUrl
        }
      }
    }
  }
}