1
0
mirror of synced 2025-12-22 03:16:52 -05:00
Files
docs/content/graphql/reference/mutations.md
Vanessa Yuen 3df90fc9b8 Hello git history spelunker!
Are you looking for something? Here is all of the GitHub Docs history in one single commit. Enjoy! 🎉
2020-09-27 14:10:11 +02:00

19 lines
626 B
Markdown

---
title: Mutations
redirect_from:
- /v4/mutation
versions:
free-pro-team: '*'
enterprise-server: '*'
---
### About mutations
Every GraphQL schema has a root type for both queries and mutations. The [mutation type](https://graphql.github.io/graphql-spec/June2018/#sec-Type-System) defines GraphQL operations that change data on the server. It is analogous to performing HTTP verbs such as `POST`, `PATCH`, and `DELETE`.
For more information, see "[About mutations](/v4/guides/forming-calls#about-mutations)."
{% for item in graphql.schemaForCurrentVersion.mutations %}
{% include graphql-mutation %}
{% endfor %}