diff --git a/src/content/8/en/part8b.md b/src/content/8/en/part8b.md index 4d63067ce0..40464d94a5 100644 --- a/src/content/8/en/part8b.md +++ b/src/content/8/en/part8b.md @@ -277,7 +277,7 @@ It is also possible to do queries with parameters with the Apollo Explorer. The The *useQuery* hook is well-suited for situations where the query is done when the component is rendered. However, we now want to make the query only when a user wants to see the details of a specific person, so the query is done only [as required](https://www.apollographql.com/docs/react/data/queries/#executing-queries-manually). -One possibility for this kind of situations is the hook function [useLazyQuery](https://www.apollographql.com/docs/react/api/react/hooks/#uselazyquery) that would make it possible to define a query which is executed when the user wants to see the detailed information of a person. +One possibility for this kind of situations is the hook function [useLazyQuery](https://www.apollographql.com/docs/react/api/react/useLazyQuery) that would make it possible to define a query which is executed when the user wants to see the detailed information of a person. However, in our case we can stick to *useQuery* and use the option [skip](https://www.apollographql.com/docs/react/data/queries#skipoptional), which makes it possible to do the query only if a set condition is true.