juniper-eager-loading
juniper-eager-loading copied to clipboard
Library for avoiding N+1 query bugs with Juniper
Hi, How can I use DateTime in this example The compiler says expected struct `file::DateTime`, found struct `chrono::DateTime` file is the name of my module Thanks ``` pub struct Agenda...
This depends on updating juniper-from-schema first https://github.com/davidpdrsn/juniper-from-schema/issues/121.
After updating to v0.5.1 from v0.5.0 using `#[has_many_through(skip)]` results in: ```error: '#[has_many_through]' missing 'join_model'``` Additionally `juniper_eager_loading::GraphqlNodeForModel` does not get generated for structs having such errors.
Would be nice to have badges for - CI build status - docs.rs - crates.io
I'm wondering if changing some of the attribute argument names to include "parent" or "child" would make them more consistent and easier to understand. It would also match the terminology...
How can i join two tables and add other attributes from the join table ? I have the following database schema  My graphql scheme look like this: ```graphql schema...