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

board_blocking_issues.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: 4dc245660a42f757c55ac83afb8a375bc541a3d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
query BoardBlockingIssues($id: IssueID!) {
  issuable: issue(id: $id) {
    __typename
    id
    blockingIssuables: blockedByIssues {
      __typename
      nodes {
        id
        iid
        title
        reference(full: true)
        webUrl
      }
    }
  }
}