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

catalog_resource.fragment.graphql « fragments « graphql « catalog « ci « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f4d1bb0eaaf82caa42ab0eb939bf976dbd5288bc (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
fragment CatalogResourceFields on CiCatalogResource {
  id
  icon
  name
  description
  starCount
  forksCount
  latestVersion {
    id
    tagName
    tagPath
    releasedAt
    author {
      id
      name
      webUrl
    }
  }
  rootNamespace {
    id
    fullPath
    name
  }
  webPath
}