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

get_container_repository_tags_count.query.graphql « queries « graphql « explorer « container_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: 9092a71edb004f4b313ce1bb92f47f8d53d3e1f9 (plain)
1
2
3
4
5
6
query getContainerRepositoryTagsCount($id: ID!) {
  containerRepository(id: $id) {
    id
    tagsCount
  }
}