Igor Strebz
Igor Strebz
Just use `cargo watch -w ./templates`.
Here it is: https://docs.rs/serde_prefix/latest/src/serde_prefix/lib.rs.html#1-77
@Astavie, that's an amazing piece of work, well done! May we help you somehow?
Check out the [Seaography](https://github.com/SeaQL/seaography/) project with its source code. They build a dynamic GraphQL schema based on SQL schema definitions, and proxy incoming requests to the database. Speaking about optimizations,...
Could you make a PR to the documentation, please?
Why not just split the struct? Like, `MyObj` and `MyObjInput`. It would be easier for frontends to differentiate them.
Okay, imagine a field from the `Output` type that is not displayed in a GraphQL schema. You want the same for the `Input` type which means the field should get...
The whole idea of a **Dataloader** is [to solve N+1 problem](https://async-graphql.github.io/async-graphql/en/dataloader.html). Imagine parallel requests of two clients which require fetching an intersecting set of users. ``` req1: 1, 2, 3,...
You need [`MaybeUndefined`](https://docs.rs/async-graphql/latest/async_graphql/types/enum.MaybeUndefined.html), with its method `class_id.take()`, which returns `Option`. ```rust #[derive(Debug, Clone, InputObject)] pub struct UpdateInput { pub class_id: MaybeUndefined>, } ``` --- If you want people to answer...
I believe, the issue can be closed now :+1: