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

get_packages_cleanup_policy.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: 0e9af253f2c4b270144c527904d0e4fa09ef5c03 (plain)
1
2
3
4
5
6
7
8
9
10
#import "../fragments/packages_cleanup_policy.fragment.graphql"

query getProjectPackagesCleanupPolicy($projectPath: ID!) {
  project(fullPath: $projectPath) {
    id
    packagesCleanupPolicy {
      ...PackagesCleanupPolicyFields
    }
  }
}