···55} from 'graphql';
6677import { getName } from './node';
88-import { makeDict } from '../store';
88+import { makeDict } from '../helpers/dict';
99import { Variables } from '../types';
10101111/** Evaluates a fields arguments taking vars into account */
+2-1
exchanges/graphcache/src/cacheExchange.ts
···28282929import { query, write, writeOptimistic } from './operations';
3030import { hydrateData } from './store/data';
3131-import { makeDict, Store, clearOptimistic } from './store';
3131+import { makeDict } from './helpers/dict';
3232+import { Store, clearOptimistic } from './store';
32333334import {
3435 UpdatesConfig,
+1
exchanges/graphcache/src/helpers/dict.ts
···11+export const makeDict = (): any => Object.create(null);
+2-1
exchanges/graphcache/src/operations/query.ts
···2727 getCurrentDependencies,
2828 initDataState,
2929 clearDataState,
3030- makeDict,
3130 joinKeys,
3231 keyOfField,
3332} from '../store';
34333534import * as InMemoryData from '../store/data';
3535+import { makeDict } from '../helpers/dict';
3636import { warn, pushDebugNode } from '../helpers/help';
3737import { SelectionIterator, ensureData } from './shared';
3838+3839import {
3940 isFieldAvailableOnType,
4041 isFieldNullable,
+1-1
exchanges/graphcache/src/operations/write.ts
···2727 getCurrentDependencies,
2828 initDataState,
2929 clearDataState,
3030- makeDict,
3130 joinKeys,
3231 keyOfField,
3332} from '../store';
34333534import * as InMemoryData from '../store/data';
3535+import { makeDict } from '../helpers/dict';
3636import { invariant, warn, pushDebugNode } from '../helpers/help';
3737import { SelectionIterator, ensureData } from './shared';
3838
+1-1
exchanges/graphcache/src/populateExchange.ts
···1919import { Exchange, Operation } from '@urql/core';
20202121import { getName, getSelectionSet, unwrapType } from './ast';
2222-import { makeDict } from './store';
2222+import { makeDict } from './helpers/dict';
2323import { invariant, warn } from './helpers/help';
24242525interface PopulateExchangeOpts {