@graphql-tools/stitch
Version:
A set of utils for faster development of GraphQL tools
29 lines (28 loc) • 1.33 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.forwardArgsToSelectionSet = void 0;
const utils_1 = require("@graphql-tools/utils");
const graphql_1 = require("graphql");
const forwardArgsToSelectionSet = (selectionSet, mapping) => {
const selectionSetDef = (0, utils_1.parseSelectionSet)(selectionSet, { noLocation: true });
return (field) => {
const selections = selectionSetDef.selections.map((selectionNode) => {
var _a, _b;
if (selectionNode.kind === graphql_1.Kind.FIELD) {
if (!mapping) {
return { ...selectionNode, arguments: (_a = field.arguments) === null || _a === void 0 ? void 0 : _a.slice() };
}
else if (selectionNode.name.value in mapping) {
const selectionArgs = mapping[selectionNode.name.value];
return {
...selectionNode,
arguments: (_b = field.arguments) === null || _b === void 0 ? void 0 : _b.filter((arg) => selectionArgs.includes(arg.name.value)),
};
}
}
return selectionNode;
});
return { ...selectionSetDef, selections };
};
};
exports.forwardArgsToSelectionSet = forwardArgsToSelectionSet;
;