From e8a1cf566122eb46b3dae1a3e616feb8729d3f77 Mon Sep 17 00:00:00 2001 From: Chang Wang Date: Tue, 16 Apr 2019 14:46:55 -0700 Subject: [PATCH 1/2] fix broken link to state management w/ wording change --- docs/source/intro/benefits.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/intro/benefits.md b/docs/source/intro/benefits.md index 25449fc..7989ee0 100644 --- a/docs/source/intro/benefits.md +++ b/docs/source/intro/benefits.md @@ -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. There’s 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. 💪 -You’ll find that when you switch to Apollo Client, you’ll 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). +You’ll find that when you switch to Apollo Client, you’ll 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 [documentation for Apollo Client](/docs/react/).

Improved performance

From b410b63abfa33ec2b26007747f668f3a3daf1ee2 Mon Sep 17 00:00:00 2001 From: Chang Wang Date: Tue, 16 Apr 2019 15:45:37 -0700 Subject: [PATCH 2/2] fix link for query batching --- docs/source/intro/benefits.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/intro/benefits.md b/docs/source/intro/benefits.md index 7989ee0..edb0e04 100644 --- a/docs/source/intro/benefits.md +++ b/docs/source/intro/benefits.md @@ -140,7 +140,7 @@ 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](/docs/react/advanced/network-layer#query-batching) to batch multiple queries into a single request.

Ready for production