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: 9bb688579235d5f9051accb99ba881318dbb7e36 (plain)
1
2
3
4
5
mutation deleteEnvironment($environment: LocalEnvironment) {
  deleteEnvironment(environment: $environment) @client {
    errors
  }
}