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

update_dependency_proxy_settings.mutation.graphql « mutations « 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: d24a645fecb33b8b61e09af0110c69b5654e5cc6 (plain)
1
2
3
4
5
6
7
8
mutation updateDependencyProxySettings($input: UpdateDependencyProxySettingsInput!) {
  updateDependencyProxySettings(input: $input) {
    dependencyProxySetting {
      enabled
    }
    errors
  }
}