Kunjan Dalal

Results 69 comments of Kunjan Dalal

@schauerte are you using Paket ? If yes then it is simple. You can just put force redirect near the name of package, in package dependency. You can refer the...

@LegNeato little help over here if possible ? Or point us to direction where we can find something regarding this.

@dyedgreen I thought it is allowed because of macros. I did it as given in the documentation.

@jmpunkt sorry that it is not clear. Let me take https://typegraphql.com/ example. ``` @Resolver(Recipe) class RecipeResolver { constructor(private recipeService: RecipeService) {} @Query(returns => Recipe) async recipe(@Arg("id") id: string) { const...

@jmpunkt thanks for explaining. I guess I did get my answer. I was looking for similar thing. I don't mind path segment until things stays clear. You can close this...

@LegNeato I guess you are asking @jmpunkt . Sorry to pitch in, but you are right. Something similar to `serde's flattern` . PS: It might need warning or error message...

@LegNeato @jmpunkt side question. Any plans to add this flatten option in Juniper? Obviously not now but in future before some concrete release?

@tyranron that would be great to have. BTW I did tried to have different `Query impl` block but it crashed. I m new to rust and juniper so it is...

@tyranron thanks for reply. It would be nice to have such feature. Let's see what community and maintainers decide. :)

@tyranron @LegNeato @jmpunkt is it possible to achieve something like this in Rust. Below code is from Scala. ```scala val api1 = graphQL(...) val api2 = graphQL(...) val api =...