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

create_pipeline.mutation.graphql « mutations « graphql « pipeline_new « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a76e8f6b95b2c8ee46e98db541bec9650cc0208c (plain)
1
2
3
4
5
6
7
8
9
mutation createPipeline($endpoint: String, $ref: String, $variablesAttributes: Array) {
  createPipeline(endpoint: $endpoint, ref: $ref, variablesAttributes: $variablesAttributes)
    @client {
    id
    errors
    totalWarnings
    warnings
  }
}