import { ApolloClient, InMemoryCache } from '@apollo/client';
const client = new ApolloClient({
// Provide required constructor fields
cache: new InMemoryCache(),
uri: 'https//url/to/graphql/endpoint',
});
import { ApolloClient, InMemoryCache } from '@apollo/client';
const client = new ApolloClient({
// Provide required constructor fields
cache: new InMemoryCache(),
uri: 'https//url/to/graphql/endpoint',
});