diff --git a/CHANGELOG.md b/CHANGELOG.md
index 085950aa356..bd51318dca3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -15,6 +15,9 @@
parameter.
[@mjlyons](https://github.com/mjlyons) in [#5388](https://github.com/apollographql/apollo-client/pull/5388)
+- Documentation updates.
+ [@tomquirk](https://github.com/tomquirk) in [#5645](https://github.com/apollographql/apollo-client/pull/5645)
+
### GraphQL Anywhere vNext
- Fix `filter` edge case involving `null`.
diff --git a/docs/source/api/react-apollo.md b/docs/source/api/react-apollo.md
index db403903cf4..4e3feea728e 100644
--- a/docs/source/api/react-apollo.md
+++ b/docs/source/api/react-apollo.md
@@ -81,7 +81,7 @@ The Query component accepts the following props. Only `query` and `children` are
onError
: (error: ApolloError) => voidcontext
: Record<string, any<context
: Record<string, any>request
function of Apollo Boost.partialRefetch
: booleantrue
, perform a query refetch
if the query result is marked as being partial, and the returned data is reset to an empty Object by the Apollo Client QueryManager
(due to a cache miss). The default value is false
for backwards-compatibility's sake, but should be changed to true for most use-cases.onError
: (error: ApolloError) => voidcontext
: Record<string, any<context
: Record<string, any>request
function of Apollo Boost.client
: ApolloClientApolloClient
instance. By default Mutation
uses the client passed down via context, but a different client can be passed in.