codegen-assets
codegen-assets copied to clipboard
Solution: upgrade nodemon to 2.0.4 I got 'address already in use' when reloading with 1.18.4. At first I found a workaround that worked, then tried upgrading to the latest stable...
The codegen for error handling looks like this: ``` if (errors) { return res.status(400).json(errors[0]) } ``` This doesn't send the `code` received in the `errors[0].extensions` object and only sends the...
Rename all Zeit string referrals to Vercel. > https://vercel.com/blog/zeit-is-now-vercel
We can generate: ```js const { input: { arg1, arg2 }, session_variables, action: { name: actionName } } = req.body; ``` Currently we just generate: ```js const { arg1, arg2...
Actions support postgres scalars now (https://github.com/hasura/graphql-engine/pull/4333). This causes a problem in typescript codegen because graphql-code-generator expects the SDL to be complete in itself. Currently we have a hack to make...