Sha256: dd85e8ccadad0cc6c9a62bca2f6b71f1016bb88923f4cf8b73691aa11d4fd6c2
Contents?: true
Size: 340 Bytes
Versions: 40
Compression:
Stored size: 340 Bytes
Contents
import { InMemoryCache } from "apollo-cache-inmemory"; import { ApolloClient } from "apollo-client"; import { HttpLink } from "apollo-link-http"; import "unfetch/polyfill"; const client = new ApolloClient({ link: new HttpLink({ uri: "/api", credentials: "same-origin", fetch }), cache: new InMemoryCache() }); export default client;
Version data entries
40 entries across 40 versions & 1 rubygems