Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix closing signs in documentation #5645

Merged
merged 3 commits into from
Dec 13, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/source/api/react-apollo.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ The Query component accepts the following props. Only `query` and `children` are
<dd>A callback executed once your query successfully completes.</dd>
<dt><code>onError</code>: (error: ApolloError) => void</dt>
<dd>A callback executed in the event of an error.</dd>
<dt><code>context</code>: Record&lt;string, any&lt;</dt>
<dt><code>context</code>: Record&lt;string, any&gt;</dt>
<dd>Shared context between your Query component and your network interface (Apollo Link). Useful for setting headers from props or sending information to the <code>request</code> function of Apollo Boost.</dd>
<dt><code>partialRefetch</code>: boolean</dt>
<dd>If <code>true</code>, perform a query <code>refetch</code> if the query result is marked as being partial, and the returned data is reset to an empty Object by the Apollo Client <code>QueryManager</code> (due to a cache miss). The default value is <code>false</code> for backwards-compatibility's sake, but should be changed to true for most use-cases.</dd>
Expand Down Expand Up @@ -147,7 +147,7 @@ The Mutation component accepts the following props. Only `mutation` and `childre
<dd>A callback executed once your mutation successfully completes</dd>
<dt><code>onError</code>: (error: ApolloError) => void</dt>
<dd>A callback executed in the event of an error</dd>
<dt><code>context</code>: Record&lt;string, any&lt;</dt>
<dt><code>context</code>: Record&lt;string, any&gt;</dt>
<dd>Shared context between your Mutation component and your network interface (Apollo Link). Useful for setting headers from props or sending information to the <code>request</code> function of Apollo Boost.</dd>
<dt><code>client</code>: ApolloClient</dt>
<dd>An <code>ApolloClient</code> instance. By default <code>Mutation</code> uses the client passed down via context, but a different client can be passed in.</dd>
Expand Down