fix link for query batching

This commit is contained in:
Chang Wang
2019-04-16 15:45:37 -07:00
parent e8a1cf5661
commit b410b63abf

View File

@@ -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.
<h3 id="production">Ready for production</h3>