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

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