graphql-query-resolver
graphql-query-resolver copied to clipboard
Minimize N+1 queries generated by GraphQL and ActiveRecord
Add support for inline fragments and named fragments, supporting queries such as: ```graphql fragment ChefFragment on chef { name recipes { title ingredients { name, quantity vendor { name }...
First off, great job. I struggled in my own code traversing the ast_node to determine the include/preload models to use in the resultant query. What you've done has made my...
when using graphql connections to resolve relations and a limit is specified on the connection, n+1 queries are still employed on the relation even though the primary query successfully batches...
It seems the return type parameter is unused. Shall we deprecate it on next releases with a warning?