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

19 lines
337 B
GraphQL

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