Live data from Hacker News

Show HN: TQL – Codegen-free and typesafe GraphQL operations in TypeScript

github.com

1–4 of 4 posts

Re: Show HN: TQL – Codegen-free and typesafe GraphQL operations in TypeScript

#4
post #2

But it's not codegen-free. You talk about having to do codegen every time your schema changes.

Yeah from an overall perspective codegen still has to happen somewhere. However the benefit here is that the responsibility can be moved to the owner of the API vs. the consumer (like is standard practice today with operation-based codegen).

Consumers can then update a pre-generated client at-will (assuming there are no breaking schema changes) like we do with REST API clients.