blog-fs/commons/graphql/client.ts

7 lines
161 B
TypeScript
Raw Normal View History

2021-05-01 18:34:45 +08:00
import { ApolloClient, InMemoryCache } from "@apollo/client";
export const client = new ApolloClient({
uri: "/api/graphql",
cache: new InMemoryCache(),
});