Created
October 31, 2016 13:14
-
-
Save michalchudziak/b30bf4a9d4ea3d88242c091567f5709b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ApolloClient, { createNetworkInterface } from 'apollo-client'; | |
const networkInterface = createNetworkInterface({ uri: 'http://my-api/graphql' }); | |
const client = new ApolloClient({ | |
networkInterface, | |
}); | |
export default client; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment