summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/projects/storage_counter/queries/project_storage.query.graphql
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
    }
  }
}