-
-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RFC: Create a schema builder that can derive a schema type for gql.tada #10
Comments
Your goals here feel like they overlap significantly with my goals for Grats. Also, the developer experience goals of gql.tada also feel broadly aligned with those of Grats. If you're interested, I'd be happy to setup some time to chat. I could share what I've learned while working on Grats, some takeaways from our work on Relay's LSP, and also learn a bit more about your goals. |
@captbaritone: Sounds awesome! I’d love to chat about this, so if you’re up for it, I hope we can coordinate something on Twitter, Discord, or via mails ✌️ For context, we’re 100% on the lookout for schema builder maintainers that are willing to implement the above RFC with us into their schema builders (if there’s no additional concerns of course), and even if we build |
@kitten Sounds good. I've reached out on Twitter. |
@hayes @JoviDeCroock could Pothos do this as one of the more fully featured options?! 😍 |
I'm looking to see if there is a way to drive this with a subset of the Pothos API. Pothos currently intentionally avoids knowing the shape of the schema for checking performance reasons. It also makes it easier to avoid issues related to circular references. I think TS has come a long way since I made some of those decisions, and I'm exploring what might be possible in v4 |
|
This is part of a future milestone, and currently proposed to close the client-server gap in GraphQL for small projects.
Summary
Currently, GraphQL caters for complex schemas and APIs that are separate from the application they’re built for. However, GraphQL presents a major setup hurdle and makes it hard for people to get started when writing a simple API in a monorepo for a single application, or embedded as an API route into an app.
While this use-case doesn't show all the best strengths of GraphQL at scale and in teams, many individual developers and teams commonly start with one app and one GraphQL schema.
My hypothesis is that it's still too hard to get started with GraphQL compared to
tRPC
, which tightly couples server and client-types, and allows for a tight integration between its server-side and client-side code.While
gql.tada
+@0no-co/graphqlsp
currently tightens the feedback loop when writing GraphQL code, this can be improved further.As part of this proposal,
gql.tada
should provide a way to create a small GraphQL schema, which can derive its own schema type in TypeScript.This schema can then be used directly when authoring GraphQL queries with
gql.tada
, with instant feedback and without reading a schema output from a GraphQL API.Proposed Solution
gql.tada/schema
should expose a schema builder, with an API similar to the existinggqtx
: https://github.com/sikanhe/gqtxIt should provide a helper to derive a dataloader (or other shared-request objects) from the context object on the fly.
It should provide a utility type that either:
These types should then be converted into
gql.tada
’sIntrospectionLikeType
automatically with this utility type and allow a front-end in the same app or monorepo to pass this type togql.tada
.Requirements
GraphQLSchema
and its corresponding definition objects i.e. be a wrapper around graphql.jsgql.tada
typeIn short, the resulting
gql.tada/schema
+gql.tada
combo should allow a developer to:The
gql.tada/schema
utilities should also output aschema.graphql
file in development automatically which@0no-co/graphqlsp
can be configured to use.The text was updated successfully, but these errors were encountered: