From b410b63abfa33ec2b26007747f668f3a3daf1ee2 Mon Sep 17 00:00:00 2001 From: Chang Wang Date: Tue, 16 Apr 2019 15:45:37 -0700 Subject: [PATCH] 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