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

projectPermissions.query.graphql « queries « snippets « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 03c81460fb5efaea2c340b304148fed8326e50e4 (plain)
1
2
3
4
5
6
7
query CanCreateProjectSnippet($fullPath: ID!) {
  project(fullPath: $fullPath) {
    userPermissions {
      createSnippet
    }
  }
}