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

blocking_issues.query.graphql « graphql « issuable_blocked_icon « components « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 279c2202740c93e095d7d3812b23de844acccc05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
query BlockingIssues($id: IssueID!) {
  issuable: issue(id: $id) {
    id
    blockingIssuables: blockedByIssues {
      nodes {
        id
        iid
        title
        reference(full: true)
        webUrl
      }
    }
  }
}