From 00e952fbfc0dea268fbf6c268d9955b0771377da Mon Sep 17 00:00:00 2001 From: Mostafa Darehzereshki Date: Wed, 29 Jul 2020 21:10:27 -0400 Subject: [PATCH] doc: add comment to apollo config file for service --- docs/source/tutorial/client.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/tutorial/client.mdx b/docs/source/tutorial/client.mdx index 1da234601..559d86643 100644 --- a/docs/source/tutorial/client.mdx +++ b/docs/source/tutorial/client.mdx @@ -52,7 +52,7 @@ Next, create an Apollo config file called `apollo.config.js`. This config file i module.exports = { client: { name: 'Space Explorer [web]', - service: 'space-explorer', + service: 'space-explorer', // replace it with your service's name you created on the Studio }, }; ```