This course is no longer maintained and may be out-of-date. While it remains available for reference, its content may not reflect the latest updates, best practices, or supported features.

Mutation and update cache

Now let's do the integration part. Open src/components/TodoItem.vue and add the following code below, to define a mutation that will update the is_completed status of a todo:

githubsrc/components/TodoItem.vue
<script setup lang="ts">
+ import { useMutation } from "@vue/apollo-composable"
+ import { UPDATE_TODO_BY_PK } from "../graphql-operations"
const { todos, type } = defineProps(["todos", "type"])
+ const updateTodo = useMutation(UPDATE_TODO_BY_PK)
</script>

We need to call updateTodo.mutate() to make the mutation.

<template>
<ul>
<li v-for="todo in todos" v-bind:key="todo.id">
<div v-if="todo.is_public" class="userInfoPublic">
<p>@{{ todo.user.name }}</p>
</div>
<div class="view" v-if="type === 'private'">
<div class="round">
<input type="checkbox" :id="todo.id" :checked="todo.is_completed" />
- <label :htmlFor="todo.id" />
+ <label
+ @click="
+ updateTodo.mutate({
+ pk_columns: { id: todo.id },
+ _set: { is_completed: !todo.is_completed },
+ })
+ "
+ :htmlFor="todo.id"
+ />
</div>
</div>
<div class="labelContent">
<p :style="todo.is_completed ? 'text-decoration: strikethrough' : ''">
{{ todo.title }}
</p>
</div>
<button v-if="type === 'private'" class="closeBtn">x</button>
</li>
</ul>
</template>
Did you find this page helpful?
Start with GraphQL on Hasura for Free
  • ArrowBuild apps and APIs 10x faster
  • ArrowBuilt-in authorization and caching
  • Arrow8x more performant than hand-rolled APIs
Promo
footer illustration
Brand logo
© 2025 Hasura Inc. All rights reserved
Github
Titter
Discord
Facebook
Instagram
Youtube
Linkedin
graphql-handbook