From 0ca21cad6cbca03ff23f7e8afc9d463529dcda6e Mon Sep 17 00:00:00 2001 From: Sreekumar Menon Date: Mon, 13 Aug 2018 19:37:53 -0700 Subject: [PATCH] fixing broken links Next steps link broken! --- docs/source/essentials/queries.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/essentials/queries.md b/docs/source/essentials/queries.md index d33fae9599c..0d1744ac82d 100644 --- a/docs/source/essentials/queries.md +++ b/docs/source/essentials/queries.md @@ -306,7 +306,7 @@ The render prop function that you pass to the `children` prop of `Query` is call Learning how to build `Query` components to fetch data is one of the most important skills to mastering development with Apollo Client. Now that you're a pro at fetching data, why not try building `Mutation` components to update your data? Here are some resources we think will help you level up your skills: -- [Mutations](./mutations.html): Learn how to update data with mutations and when you'll need to update the Apollo cache. For a full list of options, check out the API reference for `Mutation` components. -- [Local state management](./local-state.html): Learn how to query local data with `apollo-link-state`. -- [Pagination](../features/pagination.html): Building lists has never been easier thanks to Apollo Client's `fetchMore` function. Learn more in our pagination tutorial. +- [Mutations](./mutations.md): Learn how to update data with mutations and when you'll need to update the Apollo cache. For a full list of options, check out the API reference for `Mutation` components. +- [Local state management](./local-state.md): Learn how to query local data with `apollo-link-state`. +- [Pagination](../features/pagination.md): Building lists has never been easier thanks to Apollo Client's `fetchMore` function. Learn more in our pagination tutorial. - [Query component video by Sara Vieira](https://youtu.be/YHJ2CaS0vpM): If you need a refresher or learn best by watching videos, check out this tutorial on `Query` components by Sara!