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

create_abuse_report_label.mutation.graphql « graphql « abuse_report « admin « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0781b8e634b35b6a6c2c676ccb9bae67a47a9093 (plain)
1
2
3
4
5
6
7
8
9
10
#import "~/graphql_shared/fragments/label.fragment.graphql"

mutation createAbuseReportLabel($title: String!, $color: String) {
  labelCreate: abuseReportLabelCreate(input: { title: $title, color: $color }) {
    label {
      ...Label
    }
    errors
  }
}