-
Notifications
You must be signed in to change notification settings - Fork 4
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
FastGQL first version roadmap #26
Comments
@roneli Thanks, do you have any plan to have generator with some kind of popular orm such as https://gorm.io/? |
@namnm Yeah, I agree that it would be pretty handy. GORM is a useful tool not only because of its association support but also auto migration and much more. |
In general, GORM won't work well here, as it is inefficient in the query building and can't support injecting count aggregates, relational filters etc' easily I am sure it can be done, but it will require a lot of work and some workarounds. The core idea of the fastGQL is to be a lightweight extension of gqlgen and allowing the user to supplement his gqlgen but also do this own thing + SDL approach which allows more control than DB schema approach. |
Thanks, guess we may need to create a fork from your repo to work with gorm. |
@namnm Not really. I can work over the weekend on moving to the generic |
If i understand correctly i don't need dataloader with this, right? |
No you don't, it transforms the whole GraphQL query to an equiv SQL query. So all requested data is returned in one execution, and it just auto resolves from there. Obviously you can add more logical |
Hello, fastGQL users, this is a basic roadmap to complete before releasing first version of fastgql.
if you have any suggestions or feature requests, you can add to this thread or open feature request issues depending on complexity/importance will add it to the roadmap
The text was updated successfully, but these errors were encountered: