From 01999913e7b505f042015039d0551c1f8e1cbc65 Mon Sep 17 00:00:00 2001 From: thomasabishop Date: Mon, 24 Jun 2024 14:15:05 +0100 Subject: [PATCH] Autosave: 2024-06-24 14:15:05 --- zk/Mutations_with_Apollo_Client.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zk/Mutations_with_Apollo_Client.md b/zk/Mutations_with_Apollo_Client.md index 8498fb1..05fd5a2 100644 --- a/zk/Mutations_with_Apollo_Client.md +++ b/zk/Mutations_with_Apollo_Client.md @@ -98,7 +98,7 @@ const resolvers = { There's more going on with this resolver than the previous one. As is standard, we call the API using the `TrackAPI` class. However we don't just immediately return this when it executes. This is because the schema specifies that the -retrun type `IncrementTrackViewsResponse` requires more than just the updated +return type `IncrementTrackViewsResponse` requires more than just the updated `Track`. So we wait this and return it with the cluster of metadata about the mutation response (`code`, `success`, and `message`).