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

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