tql
tql copied to clipboard
A GraphQL query builder for TypeScript. Avoid the pain of codegen.
As a runtime optimization it would be nice to have compiler plugins for TypeScript, Babel, ESBuild, etc. to replace the function invocations with static query text (to avoid both the...
i.e @typescript/analyze-trace
Can we implement a GraphQL operation parser w/the [TypeScript type system](https://www.typescriptlang.org/docs/handbook/2/template-literal-types.html) ([example](https://github.com/codemix/ts-sql))?
ex. using https://github.com/semantic-release/semantic-release
See if there is any reasonable way to ship ES modules for runtimes (i.e browsers, [Node 14+](https://keenethics.com/blog/ecmascript-modules-nodejs-v14)) that support them natively. Make sure it works with https://unpkg.com/
We have the power to restrict what types of `Field`'s are returned (i.e "selected") from a `Selector` object's method. Some possible implementation options: - Inline define union of field names...
- https://github.com/dillonkearns/elm-graphql - https://github.com/contentful-labs/gqli.rb - https://github.com/maticzav/swift-graphql - https://github.com/lusingander/kraphql - https://github.com/obmarg/cynic - https://github.com/shurcooL/graphql - https://github.com/profusion/sgqlc
It's high-time we finish a stable 1.0 of this package since most bugs are ironed out, the API is mostly stabilized, and it is being utilized successfully in production in...
With this input: ```grapqhl input CreateUserInput { username: String! email: String! avatar: String posts_ref: [ID!]! } input UpdateUserInput { email: String avatar: String posts_ref: [ID!] } ``` I get this...