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

get_package_files.query.graphql « queries « graphql « package_registry « packages_and_registries « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e6f292ec1d3a46e4d90fcc7557d75b4028548ef6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
query getPackageFiles($id: PackagesPackageID!, $first: Int) {
  package(id: $id) {
    id
    packageFiles(first: $first) {
      pageInfo {
        hasNextPage
      }
      nodes {
        id
        fileMd5
        fileName
        fileSha1
        fileSha256
        size
        createdAt
        downloadPath
      }
    }
  }
}