Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The mutation to run would be:

Code Block
languagegraphql
mutation local_todo_update_item {
    local_todo_update_item(
        item_reference: {id: 8}
        input: {title: "My new title"}
    ) {
        item: {
            id
            title
        }
    }
}

...