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

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