summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/sidebar/labels_select_widget/graphql/create_label.mutation.graphql
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
  }
}