GraphQL Mutations
In this lesson, we will be introducing the GraphQL mutation and actually make one ourselves.
We'll cover the following...
Mutation vs. Query
GraphQL mutations complement GraphQL queries because they are used for writing data that queries can read. The mutation shares the same principles as the query: it has fields and objects, arguments and variables, fragments and operation names, as well as directives and nested objects for the returned result. When the mutation ...