From d05eab83a8541d4c39865808caec70aade8ab7a3 Mon Sep 17 00:00:00 2001 From: Daniel <38475290+Kaimura@users.noreply.github.com> Date: Tue, 10 Aug 2021 19:36:06 +0200 Subject: [PATCH] Update introduction.md Even though I know about these I see them so rarely that I had to pause sometimes and think for a while to realize that it is just plain ES6 syntax. So I guess newcomers would be confused a lot more! Especially the prewritten parts like the util functions and the user datasource use the defaulting and renaming of destructured variables a lot. --- docs/source/tutorial/introduction.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/source/tutorial/introduction.md b/docs/source/tutorial/introduction.md index d736b6ad1..5599f6d93 100644 --- a/docs/source/tutorial/introduction.md +++ b/docs/source/tutorial/introduction.md @@ -48,6 +48,7 @@ This tutorial assumes the following: * You're familiar with both JavaScript/ES6 and React. * If you need to brush up on React, we recommend going through the [official React tutorial](https://reactjs.org/tutorial/tutorial.html). + * If you get confused by some of the ES6 syntax used throughout the course you can look them up [here](https://www.javascripttutorial.net/es6/javascript-object-destructuring/). Make sure to at least know about spreading, destructuring, defaulting as well as naming destructured variables. * You're interested in implementing both a back-end GraphQL API _and_ a front-end client that consumes it. If you're only interested in one or the other, see one of the following: * [Get started with Apollo Client](https://www.apollographql.com/docs/react/get-started/) (frontend)