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

create_label.mutation.graphql « graphql « labels_select_widget « sidebar « components « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eb478645a03a37349c98debbc90f24951d5d7fa6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
mutation createLabel($title: String!, $color: String, $projectPath: ID, $groupPath: ID) {
  labelCreate(
    input: { title: $title, color: $color, projectPath: $projectPath, groupPath: $groupPath }
  ) {
    label {
      id
      color
      description
      title
    }
    errors
  }
}