7. Testing a mutation in the Explorer
3m

🧑‍🔬 Testing our mutation

Now that we have our schema, , and set up with helpful responses, let's get ready to test our mutation in the Explorer.

Let's start up the server by opening up a new terminal window. Here we'll navigate to the server folder with cd server, and run npm start.

With our server running, let's connect to our which is running on http://localhost:4000.

First let's check out our schema by clicking on the Schema page on the left sidebar. Under the Reference tab, we can see that there's a new Mutation type listed: the incrementTrackViews !

http://localhost:4000
Screenshot of the Apollo Studio Schema Reference tab, displaying the new mutation incrementTrackViews

To open the incrementTrackViews in the Explorer, let's click on the play icon to the right of the 's description.

This takes us to the Explorer page, with the sidebar open and ready for us to start building our first .

http://localhost:4000
Screenshot of Explorer with an empty Operation panel, ready for us to start building our query

Click the plus button () beside incrementTrackViews to add it to our Operation panel. This pre-fills some information for us! The syntax should feel familiar because it's the same syntax we've seen so far with our queries, particularly in Lift-off III where we used and .

mutation IncrementTrackViews($incrementTrackViewsId: ID!) {
incrementTrackViews(id: $incrementTrackViewsId) {
}
}

✍️ Building a GraphQL mutation

We start with the mutation keyword, and then the name of the (which the Explorer has named IncrementTrackViews for us). Inside the brackets, we've got a denoted by the $ symbol called incrementTrackViewsId, which is of type ID and required.

This is set in the Variables section below. Right now it's set to null, so let's change it to the same track ID we've been working with: c_0.

http://localhost:4000
Screenshot showing the Variables panel in Explorer with a populated track ID
{
"incrementTrackViewsId": "c_0"
}
When writing a GraphQL mutation, which keyword should it start with?
As a best practice when writing a GraphQL mutation, which should come immediately after the keyword from the previous question?

Back to the in the Operation panel!

Inside the curly braces is where we list our entry point: incrementTrackViews. It takes in an id , which we set to the incrementTrackViewsId, the same one we just set to c_0.

Now inside the second pair of curly braces we can start to add the available in our response object. These fields are in the sidebar, making it really easy to build this by clicking on the plus button () button beside the .

We want to see the code, the success boolean, the message, and the track object itself.

Inside the track object, we want the id and the numberOfViews. The number of views is what we're updating, so we want to see the newly updated value after the is hopefully successful. The id will be used by our cache, which we'll cover a little later when we get to the frontend implementation.

http://localhost:4000
Screenshot showing the Operation panel in Explorer containing the completed mutation called IncrementTrackViews

The should look like this:

mutation IncrementTrackViews($incrementTrackViewsId: ID!) {
incrementTrackViews(id: $incrementTrackViewsId) {
code
success
message
track {
id
numberOfViews
}
}
}

Let's go ahead and run it!

On the right-hand side you can see the we expected: code is 200, the success flag is true, the message says it was successful and we get our newly updated track back.

http://localhost:4000
Screenshot of the Explorer showing a successful response to the IncrementTrackViews mutation

When we run the again and again, we can see that the number of views is going up!

In the successful mutation response, where are the values of code, success and message coming from?

Let's see what happens when we change the incrementTrackViewsId to our silly string "DOESNTEXIST".

{
"incrementTrackViewsId": "DOESNTEXIST"
}

When we run this , we see the response has code 404, success is false, and the message says Could not find track with specified ID. The track is also set to null with no data available.

http://localhost:4000
Screenshot of the Explorer showing a 404 response to the IncrementTrackViews mutation
When the mutation fails, where are the values of code and message coming from in the response?

Our looks great and it's doing what it's supposed to! It's time to jump over to client-land.

Previous

Share your questions and comments about this lesson

Your feedback helps us improve! If you're stuck or confused, let us know and we'll help you out. All comments are public and must follow the Apollo Code of Conduct. Note that comments that have been resolved or addressed may be removed.

You'll need a GitHub account to post below. Don't have one? Post in our Odyssey forum instead.