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

add_linked_items.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: ba12c7f9b51079f1902307157b63ef4f22179db8 (plain)
1
2
3
4
5
6
7
8
9
10
#import "./work_item.fragment.graphql"

mutation addLinkedItems($input: WorkItemAddLinkedItemsInput!) {
  workItemAddLinkedItems(input: $input) {
    workItem {
      ...WorkItem
    }
    errors
  }
}