From f9bc581ff602aae48cecc87eb8d1ec787fed6022 Mon Sep 17 00:00:00 2001 From: Hugh Willson Date: Mon, 5 Aug 2019 13:20:02 -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 c1de905..2ff499f 100644 --- a/docs/source/tutorial/queries.md +++ b/docs/source/tutorial/queries.md @@ -78,7 +78,7 @@ export default function Launches() { } ``` -To render the list, we pass the `GET_LAUNCHES` query from the previous step into our `useQuery` Hook. Then, depending on the state of `loading`, `error`, and `data`, we either render a loading indicator, an error message, or a list of launches. +To render the list, we pass the `GET_LAUNCHES` query from the previous step into our `useQuery` hook. Then, depending on the state of `loading`, `error`, and `data`, we either render a loading indicator, an error message, or a list of launches. We're not done yet! Right now, this query is only fetching the first 20 launches from the list. To fetch the full list of launches, we need to build a pagination feature that displays a `Load More` button for loading more items on the screen. Let's learn how!