summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/work_items/graphql/get_issue_details.query.graphql
blob: 6edb6c89f162f61107d76b757acaa3386fae4fc4 (plain)
1
2
3
4
5
6
7
8
9
query issuableDetails($fullPath: ID!, $iid: String) {
  workspace: project(fullPath: $fullPath) {
    id
    issuable: issue(iid: $iid) {
      id
      confidential
    }
  }
}