Fixed link to `State management` chapter
This commit is contained in:
avin
2018-07-27 02:38:40 +03:00
committed by Evans Hauser
parent 19b2807d42
commit 7eeb5e68b4

View File

@@ -101,7 +101,7 @@ const Feed = () => (
Apollo Client takes care of the request cycle from start to finish, including tracking loading and error states for you. Theres no middleware to set up or boilerplate to write before making your first request, nor do you need to worry about transforming and caching the response. All you have to do is describe the data your component needs and let Apollo Client do the heavy lifting. 💪
Youll find that when you switch to Apollo Client, youll be able to delete a lot of unnecessary code related to data management. The exact amount will vary depending on your application, but some teams have reported up to thousands of lines. To learn more about how Apollo Client enables advanced features like optimistic UI, refetching, and pagination with less code, check out our guide on [state management](../guides/state-mgmt.html).
Youll find that when you switch to Apollo Client, youll be able to delete a lot of unnecessary code related to data management. The exact amount will vary depending on your application, but some teams have reported up to thousands of lines. To learn more about how Apollo Client enables advanced features like optimistic UI, refetching, and pagination with less code, check out our guide on [state management](../guides/state-management.html).
<h2 id="performance">Improved performance</h2>
@@ -140,4 +140,4 @@ GET /api/dogs/images
GET /api/dogs/activities
```
With GraphQL, each query represents a single round trip from the client to server. If you'd like to reduce round trips even further, you can implement [query batching](https://www.apollographql.com/docs/engine/query-batching.html) to batch multiple queries into a single request.
With GraphQL, each query represents a single round trip from the client to server. If you'd like to reduce round trips even further, you can implement [query batching](https://www.apollographql.com/docs/engine/query-batching.html) to batch multiple queries into a single request.