I have code with the following output validator: ``` .output(z.array(z.bigint())) ``` Which gives me a "500 Internal Server Error". However, using, ``` .output(z.array(z.number())) ``` Works fine.
I have code with the following output validator:
Which gives me a "500 Internal Server Error".
However, using,
Works fine.