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: b25210f5c747183f8bc88cea3ff374a68b24de99 (plain)
1
2
3
4
5
6
7
8
9
mutation workItemCreateFromTask($input: WorkItemCreateFromTaskInput!) {
  workItemCreateFromTask(input: $input) {
    workItem {
      id
      descriptionHtml
    }
    errors
  }
}