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

get_group_packages_settings.query.graphql « queries « graphql « group « 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: 2011659887dd4597df7ddf2faf98ff74d213a561 (plain)
1
2
3
4
5
6
7
8
query getGroupPackagesSettings($fullPath: ID!) {
  group(fullPath: $fullPath) {
    packageSettings {
      mavenDuplicatesAllowed
      mavenDuplicateExceptionRegex
    }
  }
}