Sign up for Hasura Newsletter
Loading...

Create todos - mutation

In this part of the tutorial, you will learn how to create new todos by using GraphQL Mutations.

Let's define a graphql mutation to perform insert into todos. In the file src/graphql-operations/index.ts, add the following:

export const INSERT_TODOS_ONE = gql`
mutation insert_todos_one($object: todos_insert_input!) {
insert_todos_one(object: $object) {
id
title
is_completed
created_at
is_public
}
}
`

You will also need to pass in the values for the variables.

Try this mutation in GraphiQL against the application database to see what the response looks like.

Let's now integrate this graphql mutation into our vue app.

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
© 2024 Hasura Inc. All rights reserved
Github
Titter
Discord
Facebook
Instagram
Youtube
Linkedin