@graphql-mesh/transport-rest
Version:
30 lines (29 loc) • 1.16 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.processResolveRootFieldAnnotations = void 0;
const graphql_1 = require("graphql");
function isOriginallyListType(type) {
if ((0, graphql_1.isNonNullType)(type)) {
return isOriginallyListType(type.ofType);
}
return (0, graphql_1.isListType)(type);
}
function processResolveRootFieldAnnotations(field, propertyName) {
if (!field.resolve || field.resolve.name === 'defaultFieldResolver') {
field.resolve = (root, args, context, info) => {
const actualFieldObj = root[propertyName];
if (actualFieldObj != null) {
const isArray = Array.isArray(actualFieldObj);
const isListType = isOriginallyListType(info.returnType);
if (isListType && !isArray) {
return [actualFieldObj];
}
else if (!isListType && isArray) {
return actualFieldObj[0];
}
}
return actualFieldObj;
};
}
}
exports.processResolveRootFieldAnnotations = processResolveRootFieldAnnotations;
;