diff --git a/docs/tutorials/beginner/graphql.mdx b/docs/tutorials/beginner/graphql.mdx index 294c15b..24b78fb 100644 --- a/docs/tutorials/beginner/graphql.mdx +++ b/docs/tutorials/beginner/graphql.mdx @@ -34,7 +34,7 @@ Open the explorer in a new tab now so that you can follow along with the tutoria On the left we can see the documentation - a list of all the resources we can query. In the middle are the text boxes where we can write our GraphQL query, as well as any variables that we might want to pass with the request. Finally on the right is the "Response" panel, where any results of queries we execute will be displayed. ## Our First Query -Let's start by getting a list of all the monsters in the database. To do this, we can build a query using the panel on the left-hand side of the explorer. Scroll down to "monsters" and click the ("plus") icon to the left. You should then be presented with a list of attributes that we can request. You should also see the following code appear in the editor: +Let's start by getting a list of all the monsters in the database. To do this, we can build a query using the panel on the left-hand side of the explorer. Scroll down to "monsters" and click the ("plus") icon to the left. You should then be presented with a list of attributes that we can request. You should also see the following code appear in the editor: ```graphql query Monsters { @@ -115,4 +115,4 @@ To pass variables, we can provide a JSON object along with our request, where ea Execute the query and we should see the same results as before, except this time we can request a different monster just by changing the value of our `index` variable. Take this opportunity to pass in different indices and observe how this affects the response. ## Next Steps -Now that we can build and test a range of GraphQL queries, we are ready to apply these skills to a real project. In future tutorials, we will bring together GraphQL and other languages and technologies to build fun and interesting tools. \ No newline at end of file +Now that we can build and test a range of GraphQL queries, we are ready to apply these skills to a real project. In future tutorials, we will bring together GraphQL and other languages and technologies to build fun and interesting tools.