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

delete_environment.mutation.graphql « mutations « graphql « environments « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4f43db6f3e1dde2302e243a19766f9a8fc57218f (plain)
1
2
3
4
5
mutation deleteEnvironment($environment: Environment) {
  deleteEnvironment(environment: $environment) @client {
    errors
  }
}