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

get_keep_latest_artifact_project_setting.query.graphql « queries « graphql « artifacts_settings « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 91fa468fc8c5e8592facc91f72f3e975800e0b1f (plain)
1
2
3
4
5
6
7
8
query getKeepLatestArtifactProjectSetting($fullPath: ID!) {
  project(fullPath: $fullPath) {
    id
    ciCdSettings {
      keepLatestArtifact
    }
  }
}