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

project_list_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: fd5b681ba8118f2fcad9e4413d42ced1d13cd223 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#import "~/graphql_shared/fragments/page_info.fragment.graphql"

query getProjectListStorageStatistics(
  $fullPath: ID!
  $searchTerm: String = ""
  $first: Int
  $last: Int
  $after: String
  $before: String
  $sortKey: NamespaceProjectSort
) {
  namespace(fullPath: $fullPath) {
    id
    projects(
      includeSubgroups: true
      notAimedForDeletion: true
      search: $searchTerm
      first: $first
      last: $last
      after: $after
      before: $before
      sort: $sortKey
    ) {
      nodes {
        id
        fullPath
        nameWithNamespace
        avatarUrl
        webUrl
        name
        statistics {
          storageSize
          repositorySize
          lfsObjectsSize
          containerRegistrySize
          buildArtifactsSize
          packagesSize
          wikiSize
          snippetsSize
        }
      }
      pageInfo {
        ...PageInfo
      }
    }
  }
}