🎬 That's a Wrap for GraphQLConf 2024! • Watch the Videos • Check out the recorded talks and workshops
Learn
Mutations

Mutations

Learn how to modify data with a GraphQL server

Most discussions of GraphQL focus on data fetching, but any complete data platform needs a way to modify server-side data as well.

In REST, any request might cause some side-effects on the server, but by convention, it’s suggested that one doesn’t use GET requests to modify data. GraphQL is similar—technically any query could be implemented to cause a data write. However, it’s useful to establish a convention that any operations that cause writes should be sent explicitly via a mutation.

On this page, you’ll learn how to use mutation operations to create, update, and delete data using GraphQL.

All of the features of GraphQL operations that apply to queries also apply to mutations, so review the Queries page first before proceeding.

Creating data

When creating new data with a REST API, you would send a POST request to a specific endpoint and include information about the entities to be created in the body of the request. GraphQL takes a different approach.

Let’s look at an example mutation that’s defined in our schema:

enum Episode {
  NEWHOPE
  EMPIRE
  JEDI
}
 
input ReviewInput {
  stars: Int!
  commentary: String
}
 
type Mutation {
  createReview(episode: Episode, review: ReviewInput!): Review
}

Like queries, mutation fields are added to one of the root operation types that provide an entry point to the API. In this case, we define the createReview field on the Mutation type.

Mutation fields can also accept arguments and you might notice that the review argument has an input type set to ReviewInput. This is known as Input Object type, which allows us to pass in a whole object to be created instead of individual scalar values only.

Also like just like queries, if the mutation field returns an Object type, then you specify a selection set of its fields in the operation:

Operation
Variables
Response

While the createReview field could be defined with any valid output type in the schema, it’s conventional to specify an output type that corresponds to whatever is modified during the mutation—in this case, the Review type. This can be useful for clients that need to fetch the new state of an object after an update.

Recall that GraphQL is meant to work with your existing code and data, so the actual creation of the review is up to you when clients send this operation to the GraphQL server. A hypothetical function that writes the new review to a database during a createReview mutation might look like this:

Mutation: {
  createReview(obj, args, context, info) {
    return context.db
      .createNewReview(args.episode, args.review)
      .then((reviewData) => new Review(reviewData))
  }
}

You can learn more about GraphQL provides data for fields on the Execution page.

Updating data

Similarly, we use mutations to update existing data. To change a human’s name, we’ll define a new mutation field and set that field’s output type to the Human type so we can return the updated human’s information to client after the server successfully writes the data:

type Mutation {
  updateHumanName(id: ID!, name: String!): Human
}

This operation will update Luke Skywalker’s name:

Operation
Variables
Response

This example demonstrates an important distinction from REST. To update a human’s properties using a REST API, you would likely send any updated data to a generalized endpoint for that resource using a PATCH request. With GraphQL, instead of simply creating an updateHuman mutation, you can define more specific mutation fields such as updateHumanNamethat are designed for the task at hand.

Purpose-built mutation fields can help make a schema more expressive by allowing the input types for field arguments to be Non-Null types (a generic updateHuman mutation would likely need to accept many nullable arguments to handle different update scenarios). Defining this requirement in the schema also eliminates the need for other runtime logic to determine that the appropriate values were submitted to perform the client’s desired write operation.

Schemas should be designed to help clients get the data that they need from the GraphQL API, so the fields defined in a schema should be informed by those use cases.

Deleting data

Just as we can send a DELETE request to delete a resource with a REST API, we can use mutations to delete some existing data as well by defining another field on the Mutation type:

type Mutation {
  deleteStarship(id: ID!): ID!
}

Here’s an example of the new mutation field:

Operation
Variables
Response

As with mutations that create and update data, the GraphQL specification doesn’t indicate what should be returned from a successful mutation operation that deletes data, but we do have to specify some type as an output type for the field in the schema. Commonly, the deleted entity’s ID or a payload object containing data about the entity will be used to indicate that the operation was successful.

Multiple fields in mutations

A mutation can contain multiple fields, just like a query. There’s one important distinction between queries and mutations, other than the name:

While query fields are executed in parallel, mutation fields run in series.

Let’s look at an example:

Operation
Response

Serial execution of these top-level fields means that if we send two deleteStarship mutations in one request, the first is guaranteed to finish before the second begins, ensuring that we don’t end up in a race condition with ourselves.

Note that serial execution of top-level Mutation fields differs from the notion of a database transaction. Some mutation fields may resolve successfully while others return errors, and there’s no way for GraphQL to revert the successful portions of the operation when this happens. So in the previous example, if the first starship is removed successfully but the secondShip field raises an error, there is no built-in way for GraphQL to revert the execution of the firstShip field afterward.

Next steps

To recap what we’ve learned about mutations:

  • Clients can create, update, and delete data using a GraphQL API, depending on what capabilities are exposed in the schema
  • Depending on client requirements, mutations can be designed to accommodate granular use cases for write operations
  • Top-level fields on the Mutation type will execute serially, unlike fields on other types which are often executed in parallel

Now that we know how to use a GraphQL server to read and write data, we’re ready to learn how to fetch data in real time using subscriptions.