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

create_branch.mutation.graphql « mutations « graphql « branches « jira_connect « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7e9cbda8317443463c61d51f7c0899cf99bd2196 (plain)
1
2
3
4
5
6
mutation createBranch($name: String!, $projectPath: ID!, $ref: String!) {
  createBranch(input: { name: $name, projectPath: $projectPath, ref: $ref }) {
    clientMutationId
    errors
  }
}