Skip to content

Instantly share code, notes, and snippets.

@Thunderbird7
Created January 11, 2017 14:32
Show Gist options
  • Save Thunderbird7/bb14afafc3b27ec524fdcd800735cd21 to your computer and use it in GitHub Desktop.
Save Thunderbird7/bb14afafc3b27ec524fdcd800735cd21 to your computer and use it in GitHub Desktop.
import ApolloClient, { createNetworkInterface } from 'apollo-client'
export default function client() {
const networkInterface = createNetworkInterface({
uri: 'https://localhost/graphql'
})
const apolloClient = new ApolloClient({ networkInterface })
return apolloClient
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment