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

delete_container_repository.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: 4c88b726ee5ab8c873587ad974bdcb48090d131c (plain)
1
2
3
4
5
6
7
8
9
mutation destroyContainerRepository($id: ContainerRepositoryID!) {
  destroyContainerRepository(input: { id: $id }) {
    containerRepository {
      id
      status
    }
    errors
  }
}