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

project_storage.query.graphql « queries « storage « usage_quotas « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d254f576219e65e2a2b2c4148e1d6e7ebdc42906 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
query getProjectStorageStatistics($fullPath: ID!) {
  project(fullPath: $fullPath) {
    id
    statistics {
      containerRegistrySize
      buildArtifactsSize
      pipelineArtifactsSize
      lfsObjectsSize
      packagesSize
      repositorySize
      snippetsSize
      storageSize
      wikiSize
    }
  }
}