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: a86db4c1b0397a3a952e39a20098745d18ba3ce0 (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
fragment CatalogResourceFields on CiCatalogResource {
  id
  icon
  name
  description
  starCount
  latestVersion {
    id
    tagName
    tagPath
    releasedAt
    author {
      id
      name
      webUrl
    }
  }
  rootNamespace {
    id
    fullPath
    name
  }
  webPath
}