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

get_container_repository_metadata.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: f1f67b9840767c28c90952c52b8570aca0abcba1 (plain)
1
2
3
4
5
6
7
query getContainerRepositoryMetadata($id: ID!) {
  containerRepository(id: $id) {
    id
    tagsCount
    size
  }
}