gitlab-org--gitlab-foss/app/assets/javascripts/work_items/graphql/create_work_item.mutation.g...

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
}
}
}
}
}
}