gio-work
gio-work
To be certain, `auth` aside, what is the current approach for handling GraphQL errors? For example, right now, we're redirected to a `500` page if a query fails. However, what...
> In general, your GraphQL API should probably not be throwing errors for the queries needed to render a page. You can defer the parts likely to throw an error...
> Ah yea handling 404's like that can be tricky, I've had trouble doing it in our own application. We've been using `@required(action: THROW)` to denote that something should be...