summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/packages_and_registries/settings/group/graphql/queries/get_group_packages_settings.query.graphql
blob: a1c01300893ce5c4b0bcdf4d092bbe1a972fcd7b (plain)
1
2
3
4
5
6
7
8
9
10
query getGroupPackagesSettings($fullPath: ID!) {
  group(fullPath: $fullPath) {
    packageSettings {
      mavenDuplicatesAllowed
      mavenDuplicateExceptionRegex
      genericDuplicatesAllowed
      genericDuplicateExceptionRegex
    }
  }
}