From 116bee72930c1c8ca10e98cb9d94d1c90de1f690 Mon Sep 17 00:00:00 2001 From: Matt Hagner Date: Wed, 5 Dec 2018 19:49:15 -0600 Subject: [PATCH] fix link typo on mutation subheading The link on the `Mutation` subheading was pointing back up to the `Object & Scalar Types` heading. --- docs/source/tutorial/schema.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/tutorial/schema.md b/docs/source/tutorial/schema.md index 8b8872c..04c434a 100644 --- a/docs/source/tutorial/schema.md +++ b/docs/source/tutorial/schema.md @@ -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). -

Mutation type

+

Mutation type

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.