summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/sidebar/queries/issue_reference.query.graphql
blob: c3128d6d96110f3319145699093985b886ef5dc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
query issueReference($fullPath: ID!, $iid: String) {
  workspace: project(fullPath: $fullPath) {
    id
    __typename
    issuable: issue(iid: $iid) {
      __typename
      id
      reference(full: true)
    }
  }
}