About mutations
Every GraphQL schema has a root type for both queries and
mutations. The mutation
type
defines GraphQL operations that change data on the server. It is
analogous to performing HTTP verbs such as POST,
PATCH, and DELETE.
{{ name }}
Type: {{ field.type|string }}
{{ field.description|default('', True)|markdown|safe }}
{% if field.args %}
{% endif %}
Arguments
| Name | Description |
|---|---|
|
{{ arg.description|default('', True)|markdown|safe }} |
Return fields
| Name | Description |
|---|---|
|
{{ return.description|default('', True)|markdown|safe }} |