This repository has been archived on 2024-06-24. You can view files and clone it, but cannot push or open issues or pull requests.
graphql-lightning-talk/assets/js/client.js
2018-04-08 14:30:36 +12:00

12 lines
284 B
JavaScript

import { ApolloClient } from 'apollo-client';
import { HttpLink } from 'apollo-link-http';
import { InMemoryCache } from 'apollo-cache-inmemory';
const client = new ApolloClient({
link: new HttpLink({
uri: "/api"
}),
cache: new InMemoryCache(),
});
export default client;