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

design_permissions.query.graphql « queries « graphql « design_management_legacy « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a87b256dc95774019807dcba4b940b767fb80fb3 (plain)
1
2
3
4
5
6
7
8
9
10
query permissions($fullPath: ID!, $iid: String!) {
  project(fullPath: $fullPath) {
    id
    issue(iid: $iid) {
      userPermissions {
        createDesign
      }
    }
  }
}