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

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