Skip to content

Commit

Permalink
Fix broken next steps links in mutations docs section (#3808)
Browse files Browse the repository at this point in the history
* Fix broken next steps links
* Changelog update
  • Loading branch information
msreekm authored and hwillson committed Aug 17, 2018
1 parent 472819f commit 906960d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
[@lorensr](https://github.com/lorensr) in [#3748](https://github.com/apollographql/apollo-client/pull/3748) <br/>
[@joshribakoff](https://github.com/joshribakoff) in [#3730](https://github.com/apollographql/apollo-client/pull/3730) <br/>
[@yalamber](https://github.com/yalamber) in [#3819](https://github.com/apollographql/apollo-client/pull/3819) <br/>
[@pschreibs85](https://github.com/pschreibs85) in [#3812](https://github.com/apollographql/apollo-client/pull/3812)
[@pschreibs85](https://github.com/pschreibs85) in [#3812](https://github.com/apollographql/apollo-client/pull/3812) <br/>
[@msreekm](https://github.com/msreekm) in [#3808](https://github.com/apollographql/apollo-client/pull/3808)

### Apollo Cache In-Memory (vNext)

Expand Down
6 changes: 3 additions & 3 deletions docs/source/essentials/mutations.md
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ The render prop function that you pass to the `children` prop of `Mutation` is c
Learning how to build `Mutation` components to update your data is an important part of developing applications with Apollo Client. Now that you're well-versed in updating data, why not try executing client-side mutations with `apollo-link-state`? Here are some resources we think will help you level up your skills:
- [Optimistic UI](../features/optimistic-ui.html): Learn how to improve perceived performance by returning an optimistic response before your mutation result comes back from the server.
- [Local state](./local-state.html): Manage your local state with Apollo by executing client-side mutations with `apollo-link-state`.
- [Caching in Apollo](../advanced/caching.html): Dive deep into the Apollo cache and how it's normalized in our advanced guide on caching. Understanding the cache is helpful when writing your mutation's `update` function!
- [Optimistic UI](../features/optimistic-ui.md): Learn how to improve perceived performance by returning an optimistic response before your mutation result comes back from the server.
- [Local state](./local-state.md): Manage your local state with Apollo by executing client-side mutations with `apollo-link-state`.
- [Caching in Apollo](../advanced/caching.md): Dive deep into the Apollo cache and how it's normalized in our advanced guide on caching. Understanding the cache is helpful when writing your mutation's `update` function!
- [Mutation component video by Sara Vieira](https://youtu.be/2SYa0F50Mb4): If you need a refresher or learn best by watching videos, check out this tutorial on `Mutation` components by Sara!

0 comments on commit 906960d

Please sign in to comment.