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: b5695a01376dd6e44ce21daa1819442ec9a77341 (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
fragment PackageData on Package {
  id
  name
  version
  packageType
  createdAt
  status
  canDestroy
  tags {
    nodes {
      id
      name
    }
  }
  pipelines(last: 1) {
    nodes {
      id
      sha
      ref
      commitPath
      user {
        id
        name
      }
    }
  }
  project {
    id
    fullPath
    webUrl
  }
}