UNPKG

create-bar-project

Version:

This module helps create a base for web application projects.

13 lines (10 loc) 202 B
import { InMemoryCache } from '@apollo/client'; import fields from '../Fields'; const cache = new InMemoryCache({ typePolicies: { Query: { fields, }, }, }); export default cache;