diff --git a/docs/source/essentials/mutations.md b/docs/source/essentials/mutations.md
index 7f5623d59ab..441ce9212bc 100644
--- a/docs/source/essentials/mutations.md
+++ b/docs/source/essentials/mutations.md
@@ -266,6 +266,8 @@ The render prop function that you pass to the `children` prop of `Mutation` is c
Any errors returned from the mutation
`called`: boolean
A boolean indicating if the mutate function has been called
+ `client`: ApolloClient
+ Your `ApolloClient` instance. Useful for invoking cache methods outside the context of the update function, such as `client.writeData` and `client.readQuery`.
Next steps