@graphql-mesh/fusion-execution
Version:
Runtime for Fusion Supergraph
40 lines (39 loc) • 1.73 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.flattenSelections = void 0;
const graphql_1 = require("graphql");
function flattenSelections(selections, fragments, defer = false) {
return selections.flatMap(selection => {
switch (selection.kind) {
case graphql_1.Kind.FIELD:
return [
{
...selection,
selectionSet: selection.selectionSet && {
...selection.selectionSet,
selections: flattenSelections(selection.selectionSet.selections, fragments, defer),
},
defer,
},
];
case graphql_1.Kind.INLINE_FRAGMENT:
if (selection.directives?.some(directive => directive.name.value === 'defer')) {
defer = true;
}
return flattenSelections(selection.selectionSet.selections, fragments, defer);
case graphql_1.Kind.FRAGMENT_SPREAD: {
const fragment = fragments[selection.name.value];
if (!fragment) {
throw new Error(`No fragment found for ${selection.name.value}`);
}
if (fragment.directives?.some(directive => directive.name.value === 'defer')) {
defer = true;
}
return flattenSelections(fragment.selectionSet.selections, fragments, defer);
}
default:
throw new Error(`Unexpected selection node kind ${selection.kind}`);
}
});
}
exports.flattenSelections = flattenSelections;
;