Errors
Hey team, what's the best way of getting more context about these errors ?
Is there an API endpoint I can use to retrieve the error status and messages ?
Do I have to manually log the error on my worker ?
1 Reply
We return most of our user-facing error messaging as SQL errors to the client, so yes you'd want to try/catch/handle/log in your worker code, as needed.
We also provide error information per query via the graphql API but it is less rich than what the client gets so I'd start with the worker code first.