summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/work_items/graphql/create_work_item.mutation.graphql
blob: 4cc23fa00718c9aa12280bce5edcc231b9697250 (plain)
1
2
3
4
5
6
7
8
9
10
#import "ee_else_ce/work_items/graphql/work_item.fragment.graphql"

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