graphql

gklijs 2020-02-26T07:40:02.000800Z

I will, when I have the time.

joaohgomes 2020-02-26T15:27:15.005900Z

Does anyone know if it is possible to set a max payload/size for body and header in lacinia/pedestal? I was trying to find references in the source code to no avail. I was assuming then I’d hit the jetty engine limit (200Kb by default), but apparently lacinia is still trying to parse the input for bigger payloads. Off course I could use an interceptor to impose this limit but I’m wondering if there’s a nicer/easier way of doing it…

hlship 2020-02-26T16:52:37.006400Z

Certainly something to consider at the Pedestal interceptor stage; remember that Lacinia doesn't really know about requests and responses, it's just an api.

💯 1
joaohgomes 2020-02-26T18:45:30.006700Z

Thank you! 🙂