From d96ff50bfc7dd160cfc5fb2bd69afb8a5d3c0208 Mon Sep 17 00:00:00 2001 From: Hugh Willson Date: Mon, 5 Aug 2019 13:19:46 -0400 Subject: [PATCH] Update docs/source/tutorial/queries.md Co-Authored-By: Peggy Rayzis --- docs/source/tutorial/queries.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/tutorial/queries.md b/docs/source/tutorial/queries.md index ff305d6..d7967e4 100644 --- a/docs/source/tutorial/queries.md +++ b/docs/source/tutorial/queries.md @@ -9,7 +9,7 @@ Apollo Client simplifies fetching data from a graph API because it intelligently ## The useQuery hook -The `useQuery` Hook is one of the most important building blocks of an Apollo app. It's a React Hook that fetches a GraphQL query and exposes the result so you can render your UI based on the data it returns. +The `useQuery` hook is one of the most important building blocks of an Apollo app. It's a React Hook that fetches a GraphQL query and exposes the result so you can render your UI based on the data it returns. The `useQuery` Hook leverages React's [Hooks API](https://reactjs.org/docs/hooks-intro.html) to fetch and load data from queries into our UI. It exposes `error`, `loading` and `data` properties through a result object, that help us populate and render our component. Let's see an example: