fix link typo on mutation subheading

The link on the `Mutation` subheading was pointing back up to the `Object & Scalar Types` heading.
This commit is contained in:
Matt Hagner
2018-12-05 19:49:15 -06:00
committed by GitHub
parent d0f3e58632
commit 116bee7293

View File

@@ -127,7 +127,7 @@ You'll notice that the field `missionPatch` takes an argument of `size`. GraphQL
There are some other less common types you might also encounter when building your graph's schema. For a full list, you can reference this handy [cheat sheet](https://devhints.io/graphql#schema).
<h3 id="object">Mutation type</h3>
<h3 id="mutation">Mutation type</h3>
Now, let's define the **Mutation type**. The `Mutation` type is the entry point into our graph for modifying data. Just like the `Query` type, the `Mutation` type is a special object type.