graphql-yoga
Version:
<div align="center"><img src="./website/public/cover.png" width="720" /></div>
36 lines (35 loc) • 1.38 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.useLimitBatching = void 0;
const error_js_1 = require("../../error.js");
function useLimitBatching(limit) {
return {
onRequestParse() {
return {
onRequestParseDone({ requestParserResult }) {
if (Array.isArray(requestParserResult)) {
if (!limit) {
throw (0, error_js_1.createGraphQLError)(`Batching is not supported.`, {
extensions: {
http: {
status: 400,
},
},
});
}
if (requestParserResult.length > limit) {
throw (0, error_js_1.createGraphQLError)(`Batching is limited to ${limit} operations per request.`, {
extensions: {
http: {
status: 413,
},
},
});
}
}
},
};
},
};
}
exports.useLimitBatching = useLimitBatching;
;