diff --git a/docs/source/api/react-apollo.md b/docs/source/api/react-apollo.md index c748d4afafe..d94b291dec7 100644 --- a/docs/source/api/react-apollo.md +++ b/docs/source/api/react-apollo.md @@ -1317,8 +1317,8 @@ An important note is that `compose()` executes the last enhancer _first_ and wor ```js export default compose( withApollo, - graphql(`query { ... }`), - graphql(`mutation { ... }`), + graphql(gql`query { ... }`), + graphql(gql`mutation { ... }`), connect(...), )(MyComponent); ```