debian-mirror-gitlab/app/assets/javascripts/work_items/graphql/create_work_item.mutation.graphql
2022-01-26 12:08:38 +05:30

19 lines
337 B
GraphQL

#import './widget.fragment.graphql'
mutation createWorkItem($input: LocalCreateWorkItemInput) {
localCreateWorkItem(input: $input) @client {
workItem {
id
type
widgets {
nodes {
...WidgetBase
... on LocalTitleWidget {
contentText
}
}
}
}
}
}