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

get_packages_protection_rules.query.graphql « queries « graphql « project « settings « packages_and_registries « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e0a072b93e4c0f9b8d53830b1062011e234e7db1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
query getProjectPackageProtectionRules($projectPath: ID!, $first: Int) {
  project(fullPath: $projectPath) {
    id
    packagesProtectionRules(first: $first) {
      nodes {
        id
        packageNamePattern
        packageType
        pushProtectedUpToAccessLevel
      }
    }
  }
}