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

create_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: 99330ecca80869ab2402e1bf754199d4137fa25c (plain)
1
2
3
4
5
6
7
8
9
mutation createEnvironment($input: EnvironmentCreateInput!) {
  environmentCreate(input: $input) {
    environment {
      id
      path
    }
    errors
  }
}