@graphql-tools/load
Version:
A set of utils for faster development of GraphQL tools
45 lines (44 loc) • 1.63 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.normalizePointers = void 0;
const utils_1 = require("@graphql-tools/utils");
const process_1 = require("process");
function normalizePointers(unnormalizedPointerOrPointers) {
if (process_1.env['DEBUG'] != null) {
console.time(`@graphql-tools/load: normalizePointers`);
}
const ignore = [];
const pointerOptionMap = {};
const handlePointer = (rawPointer, options = {}) => {
if (rawPointer.startsWith('!')) {
ignore.push(rawPointer.replace('!', ''));
}
else {
pointerOptionMap[rawPointer] = options;
}
};
for (const rawPointer of (0, utils_1.asArray)(unnormalizedPointerOrPointers)) {
if (process_1.env['DEBUG'] != null) {
console.time(`@graphql-tools/load: normalizePointers ${rawPointer}`);
}
if (typeof rawPointer === 'string') {
handlePointer(rawPointer);
}
else if (typeof rawPointer === 'object') {
for (const [path, options] of Object.entries(rawPointer)) {
handlePointer(path, options);
}
}
else {
throw new Error(`Invalid pointer '${rawPointer}'.`);
}
if (process_1.env['DEBUG'] != null) {
console.timeEnd(`@graphql-tools/load: normalizePointers ${rawPointer}`);
}
}
if (process_1.env['DEBUG'] != null) {
console.timeEnd(`@graphql-tools/load: normalizePointers`);
}
return { ignore, pointerOptionMap };
}
exports.normalizePointers = normalizePointers;
;