feat: Introduce adding a new app connection
This commit is contained in:
11
packages/web/src/graphql/cache.ts
Normal file
11
packages/web/src/graphql/cache.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { InMemoryCache } from '@apollo/client';
|
||||
|
||||
const cache = new InMemoryCache({
|
||||
typePolicies: {
|
||||
App: {
|
||||
keyFields: ['key']
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
export default cache;
|
Reference in New Issue
Block a user