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

create_commit.graphql « queries « pipeline_wizard « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9abf8eff587fdaaf3ae1eda9192ef5f8079f6288 (plain)
1
2
3
4
5
6
7
8
9
mutation CreateCommit($input: CommitCreateInput!) {
  commitCreate(input: $input) {
    commit {
      id
    }
    content
    errors
  }
}