Hacker News new | ask | show | jobs
Show HN: TQL – Codegen-free and typesafe GraphQL operations in TypeScript (github.com)
11 points by tboytim 2003 days ago
1 comments

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.

Yeah, was going to post the same thing.