Christian Legnitto
Christian Legnitto
We had previously discussed something like serde's flatten...would that do what you want?
There might be some ideas in https://github.com/davidpdrsn/juniper-from-schema as well
Woah, totally missed this, great work! Is it ready to be integrated?
@trevyn , FWIW I was thinking about this due to https://github.com/graphql-rust/juniper/commit/17d474ed21dfd42c8e2c59a27e9d38620b82bdef. I wonder if there is a way to give a schema and have a bunch of valid and invalid...
I doubt it does, but does the latest master with https://github.com/graphql-rust/juniper/pull/226 help here?
I haven't touched this area of Juniper but I have some time tomorrow and will try to take a crack at it
Hmmm. If you are talking about generating the correct SQL query in resolvers, there is `dataloader-rs` and `juniper-eager-loading` as two strategies to prevent inefficiencies. If you want to translate an...
Generally this is called the "N+1" problem in GraphQL. Juniper provides lookaheads and it is up to you to decide how best to implement your mitigation logic. There are roughly...
Great idea!
Would love this behind a feature flag as it is non-standard.