From 8ee0fdbabe392a9a774b7b410ba9f7aafdc98613 Mon Sep 17 00:00:00 2001 From: George Tsopanoglou Date: Sun, 11 Aug 2019 14:55:37 +0100 Subject: [PATCH] Typo fix in resolvers.md (#545) Typo fix: `Mutation` instead of `Mission` in resolvers.md --- docs/source/tutorial/resolvers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/tutorial/resolvers.md b/docs/source/tutorial/resolvers.md index 643870d..79414d4 100644 --- a/docs/source/tutorial/resolvers.md +++ b/docs/source/tutorial/resolvers.md @@ -263,7 +263,7 @@ _src/schema.js_ The first argument passed into our resolver is the parent, which refers to the mission object. The second argument is the size we pass to our `missionPatch` field, which we use to determine which property on the mission object we want our field to resolve to. -Now that we know how to add resolvers on types other than `Query` and `Mutation`, let's add some more resolvers to the `Launch` and `User` types. Copy this code into your resolver map: +Now that we know how to add resolvers on types other than `Query` and `Mission`, let's add some more resolvers to the `Launch` and `User` types. Copy this code into your resolver map: _src/resolvers.js_