...
Code Block | ||
---|---|---|
| ||
mutation local_todo_update_item {
local_todo_update_item(
item_reference: {id: 8}
input: {title: "My new title"}
) {
item: {
id
title
}
}
} |
Using internal GraphQL in Tui components
...