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: 7a389b2aa5caa8ce072adab6261924ff2e253d65 (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
#import "~/graphql_shared/fragments/page_info.fragment.graphql"

query getPackageFiles(
  $id: PackagesPackageID!
  $first: Int
  $last: Int
  $after: String
  $before: String
) {
  package(id: $id) {
    id
    packageFiles(after: $after, before: $before, first: $first, last: $last) {
      pageInfo {
        ...PageInfo
      }
      nodes {
        id
        fileMd5
        fileName
        fileSha1
        fileSha256
        size
        createdAt
        downloadPath
      }
    }
  }
}