Valeriy Protopopov
Valeriy Protopopov
### What happened? According to https://gqlgen.com/recipes/modelgen-hook/ we can mutate generated models file. ### What did you expect? I want to add some tags into struct fields depending on existing directives....
Im trying to generate dataloader that uses struct type as a key instead of primitive type. Im using `gqlgen` and all my models are generated automatically. My project structure: ```...
My graphql scheme contains enums with capital letters values and graphql-client cli generates such code: ```rust #[derive(Eq, PartialEq)] pub enum PagesSortType { #[doc = ""] ID_ASC, #[doc = ""] ID_DESC,...
Last commit was 5 months ago.
This would improve interoperability and compatibility with third-party caching packages.
I have very simple GraphQL schema: ```graphql schema { query: Query } type Query { ping: Boolean! @juniper(infallible: true, ownership: "owned") } ``` ```rust use juniper_from_schema::graphql_schema_from_file; use crate::resources::Resources; graphql_schema_from_file!("schema.graphql"); pub...