graphql-yoga
Version:
<div align="center"><img src="./website/public/cover.png" width="720" /></div>
32 lines (31 loc) • 1.21 kB
JavaScript
import { createGraphQLError } from '../../error.js';
export function useLimitBatching(limit) {
return {
onRequestParse() {
return {
onRequestParseDone({ requestParserResult }) {
if (Array.isArray(requestParserResult)) {
if (!limit) {
throw createGraphQLError(`Batching is not supported.`, {
extensions: {
http: {
status: 400,
},
},
});
}
if (requestParserResult.length > limit) {
throw createGraphQLError(`Batching is limited to ${limit} operations per request.`, {
extensions: {
http: {
status: 413,
},
},
});
}
}
},
};
},
};
}