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

delete_container_repository_tags.mutation.graphql « mutations « 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: a31f2829e13acf5f52c38a6b2bfa46eb70df6835 (plain)
1
2
3
4
5
mutation destroyContainerRepositoryTags($id: ContainerRepositoryID!, $tagNames: [String!]!) {
  destroyContainerRepositoryTags(input: { id: $id, tagNames: $tagNames }) {
    errors
  }
}