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: 85a181d3e01069cba72b5e2ef54302ad097dfbc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
query getProjectStorageStatistics($fullPath: ID!) {
  project(fullPath: $fullPath) {
    id
    statisticsDetailsPaths {
      containerRegistry
      buildArtifacts
      packages
      repository
      snippets
      wiki
    }
    statistics {
      containerRegistrySize
      buildArtifactsSize
      pipelineArtifactsSize
      lfsObjectsSize
      packagesSize
      repositorySize
      snippetsSize
      storageSize
      wikiSize
    }
  }
}