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

get_build_artifacts_size.query.graphql « queries « graphql « artifacts « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 23da65ad0bb6acb2adec149296c9c9509eb9346b (plain)
1
2
3
4
5
6
7
8
query getBuildArtifactsSize($projectPath: ID!) {
  project(fullPath: $projectPath) {
    id
    statistics {
      buildArtifactsSize
    }
  }
}