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: 7486512c57c718d25dff389276a742fc523c3e45 (plain)
1
2
3
4
5
6
7
query getKeepLatestArtifactProjectSetting($fullPath: ID!) {
  project(fullPath: $fullPath) {
    ciCdSettings {
      keepLatestArtifact
    }
  }
}