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

create_work_item_from_task.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: 1f98cd4fa2b8d19f445cfab1f6985f6c51a3dc6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#import "ee_else_ce/work_items/graphql/work_item.fragment.graphql"

mutation workItemCreateFromTask($input: WorkItemCreateFromTaskInput!) {
  workItemCreateFromTask(input: $input) {
    workItem {
      ...WorkItem
    }
    newWorkItem {
      ...WorkItem
    }
    errors
  }
}