@graphql-mesh/transport-rest
Version:
27 lines (26 loc) • 1.02 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.processLengthAnnotations = void 0;
function processLengthAnnotations(scalar, { min: minLength, max: maxLength, }) {
function coerceString(value) {
if (value != null) {
const vStr = value.toString();
if (typeof minLength !== 'undefined' && vStr.length < minLength) {
throw new Error(`${scalar.name} cannot be less than ${minLength} but given ${vStr}`);
}
if (typeof maxLength !== 'undefined' && vStr.length > maxLength) {
throw new Error(`${scalar.name} cannot be more than ${maxLength} but given ${vStr}`);
}
return vStr;
}
}
scalar.serialize = coerceString;
scalar.parseValue = coerceString;
scalar.parseLiteral = ast => {
if ('value' in ast) {
return coerceString(ast.value);
}
return null;
};
}
exports.processLengthAnnotations = processLengthAnnotations;
;