UNPKG

graphql-yoga

Version:

[![GraphQL Conf 2023](/GraphQLConf-2023-Banner.png)](https://graphql.org/conf/)

18 lines (17 loc) 554 B
export function useHTTPValidationError() { return { onValidate() { return ({ valid, result }) => { if (!valid) { for (const error of result) { error.extensions.http = { ...error.extensions.http, spec: error.extensions.http?.spec ?? true, status: error.extensions.http?.status ?? 400, }; } } }; }, }; }