@graphql-mesh/transport-rest
Version:
25 lines (24 loc) • 797 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.processRegExpAnnotations = void 0;
function processRegExpAnnotations(scalar, pattern) {
function coerceString(value) {
if (value != null) {
const vStr = value.toString();
const regexp = new RegExp(pattern);
if (!regexp.test(vStr)) {
throw new Error(`${scalar.name} must match ${pattern} 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.processRegExpAnnotations = processRegExpAnnotations;
;