diff --git a/website/docs/tutorials/index.md b/website/docs/tutorials/index.md index 2361a27109..50b67f86c7 100644 --- a/website/docs/tutorials/index.md +++ b/website/docs/tutorials/index.md @@ -35,7 +35,7 @@ let root = { }; // Run the GraphQL query '{ hello }' and print out the response -graphql({schema, source: '{ hello }', rootValue: root}).then((response) => { +graphql({ schema, source: '{ hello }', rootValue: root }).then((response) => { console.log(JSON.stringify(response, null, 2)); }); ```