4 lines
129 B
GraphQL
4 lines
129 B
GraphQL
|
mutation updateItem($id: String!, $propsToUpdate: Item!) {
|
||
|
updateToolbarItem(id: $id, propsToUpdate: $propsToUpdate) @client
|
||
|
}
|