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

create_work_item.mutation.graphql « graphql « work_items « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1228c876a556c2f29263bf1c6a13847e80385d79 (plain)
1
2
3
4
5
6
7
8
9
10
#import "./work_item.fragment.graphql"

mutation createWorkItem($input: WorkItemCreateInput!) {
  workItemCreate(input: $input) {
    workItem {
      ...WorkItem
    }
    errors
  }
}