Skip to content

Commit

Permalink
update react-apollo api for changes to returned prop (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
James Baxley authored and Sashko Stubailo committed Apr 26, 2016
1 parent e81359e commit 5fc6c55
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/source/apollo-client/react.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,8 @@ Each key on the object returned by mapQueriesToProps should be made up of the sa
{
loading: boolean,
errors: Error[],
result: GraphQLResult,
refetch: Function(variables)
refetch: Function(variables),
getCategory: Data // only when the query has returned
}
```

Expand All @@ -157,7 +157,7 @@ Each key on the object returned by mapQueriesToProps should be made up of the sa
{
loading: boolean,
errors: Error[],
result: GraphQLResult,
postReply: Data, // only when the muation has returned
}
```

Expand Down

0 comments on commit 5fc6c55

Please sign in to comment.