graphql-engine/docs/graphql/manual/mutations/index.rst
2018-12-03 17:42:24 +05:30

36 lines
546 B
ReStructuredText

Mutations
=========
.. contents:: Table of contents
:backlinks: none
:depth: 1
:local:
GraphQL mutations are used to modify server-side data (i.e. write, update or delete data). As with queries, mutation
fields are auto-generated based on the Postgres schema.
Types of mutation requests
--------------------------
Let's use this reference author/article schema to look at different types of mutations.
.. toctree::
:maxdepth: 1
Insert <insert>
Upsert <upsert>
Update <update>
Delete <delete>
multiple-mutations