summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/packages_and_registries/package_registry/graphql/fragments/package_data.fragment.graphql
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
  }
}