@graphql-tools/batch-delegate
Version:
A set of utils for faster development of GraphQL tools
70 lines (69 loc) • 3 kB
JavaScript
import { getNamedType, GraphQLList, print } from 'graphql';
import DataLoader from 'dataloader';
import { delegateToSchema } from '@graphql-tools/delegate';
import { memoize1, memoize2, relocatedError } from '@graphql-tools/utils';
function createBatchFn(options) {
var _a, _b;
const argsFromKeys = (_a = options.argsFromKeys) !== null && _a !== void 0 ? _a : ((keys) => ({ ids: keys }));
const fieldName = (_b = options.fieldName) !== null && _b !== void 0 ? _b : options.info.fieldName;
const { valuesFromResults, lazyOptionsFn } = options;
return async function batchFn(keys) {
const results = await delegateToSchema({
returnType: new GraphQLList(getNamedType(options.info.returnType)),
onLocatedError: originalError => {
if (originalError.path == null) {
return originalError;
}
const [pathFieldName, pathNumber] = originalError.path;
if (pathFieldName !== fieldName) {
return originalError;
}
const pathNumberType = typeof pathNumber;
if (pathNumberType !== 'number') {
return originalError;
}
return relocatedError(originalError, originalError.path.slice(0, 0).concat(originalError.path.slice(2)));
},
args: argsFromKeys(keys),
...(lazyOptionsFn == null ? options : lazyOptionsFn(options)),
});
if (results instanceof Error) {
return keys.map(() => results);
}
const values = valuesFromResults == null ? results : valuesFromResults(results, keys);
return Array.isArray(values) ? values : keys.map(() => values);
};
}
const getLoadersMap = memoize2(function getLoadersMap(_context, _schema) {
return new Map();
});
const GLOBAL_CONTEXT = {};
const memoizedJsonStringify = memoize1(function jsonStringify(value) {
return JSON.stringify(value);
});
const memoizedPrint = memoize1(print);
function defaultCacheKeyFn(key) {
if (typeof key === 'object') {
return memoizedJsonStringify(key);
}
return key;
}
export function getLoader(options) {
const { schema, context, info, fieldName = info.fieldName, dataLoaderOptions, fieldNodes = info.fieldNodes, selectionSet = fieldNodes[0].selectionSet, } = options;
const loaders = getLoadersMap(context !== null && context !== void 0 ? context : GLOBAL_CONTEXT, schema);
let cacheKey = fieldName;
if (selectionSet != null) {
cacheKey += memoizedPrint(selectionSet);
}
let loader = loaders.get(cacheKey);
if (loader === undefined) {
const batchFn = createBatchFn(options);
loader = new DataLoader(batchFn, {
// Prevents the keys to be passed with the same structure
cacheKeyFn: defaultCacheKeyFn,
...dataLoaderOptions,
});
loaders.set(cacheKey, loader);
}
return loader;
}