Welcome to mirror list, hosted at ThFree Co, Russian Federation.

board_blocking_epics.query.graphql « graphql « boards « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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
        }
      }
    }
  }
}