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

package_data.fragment.graphql « fragments « 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: aaf0eb54aff20b0f9b5a9eda6582a1e6601375a3 (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
fragment PackageData on Package {
  id
  name
  version
  packageType
  createdAt
  status
  tags {
    nodes {
      name
    }
  }
  pipelines {
    nodes {
      sha
      ref
      commitPath
      user {
        name
      }
    }
  }
  project {
    fullPath
    webUrl
  }
}