Mutations
The Hasura GraphQL Engine automatically generates GraphQL mutation fields for inserting, updating, or deleting data based on your database's schema. For any tracked table, a set of mutations are generated and exposed as part of the GraphQL API.
Just as with queries, as soon you paste in your connection string and track your tables, you're ready to start writing mutations!
Quick Links
Using Mutations
Insert data
Learn how to insert new data into your database using a mutation.
Execute multiple mutations
Learn how to execute multiple mutations in a single request using a single GraphQL request.
Update data
Learn how to update data in your database using a mutation, which enables you to update data in a single row or multiple rows with one mutation.