juniper-eager-loading icon indicating copy to clipboard operation
juniper-eager-loading copied to clipboard

Library for avoiding N+1 query bugs with Juniper

Results 6 juniper-eager-loading issues
Sort by recently updated
recently updated
newest added

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

good first issue

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 ![image](https://user-images.githubusercontent.com/3998763/73750055-d12a6000-475c-11ea-86d1-8c4e9ce2b843.png) My graphql scheme look like this: ```graphql schema...

question