Hello guys, I'm having problems with error 413 on ...
# orm-help
p
Hello guys, I'm having problems with error 413 on my Graphql yoga. "Request entity too large". When I run my query on Prisma Server (playground) it works fine, but when run on my graphql service(graphql-yoga/playground) I get the 413 error. Any idea how to fix it?
h
I think you are exceeding the default limit of 100kb. You can configure the limit of body-parser though using bodyParserOptions parameter: https://github.com/prisma/graphql-yoga/blob/master/README.md#startoptions-options-callback-options-options--void----null-promisevoid
✔️ 1