Marek Skácelík
Marek Skácelík
Hi @t1, Two new modules have been added to the Type-Safe client (Quarkus): `smallrye-graphql-client-model` and `smallrye-graphql-client-model-builder`. The `schema` and `schema-builder` on the server side heavily inspired this approach. The `model`...
I would add a small note. The type-safe client currently has two implementations, one especially for Quarkus and the other for different runtimes (WF,…). 1) New Quarkus implementation: This implementation...
Very strange, gonna look into it
@vitomanu96 I tried to reproduce the problem for Quarkus 3.10.1, but my query building works as intended: Traced log: `Query created: query loadProvvigioniSuTitoli($listaIdTitoli: [BigInteger]) { loadProvvigioniSuTitoli(listaIdTitoli: $listaIdTitoli) {id} }` I...
Oh yes, you are right, thank you @ErtiRakipaj :). With that said, this _exact_ reproducer (with removed configuration) does not log out the given error message. So, I will create...
I understand now; the Java Reflection approach previously returned the parameter names as arg0, arg1, arg2,... So the solution was to add 1) the `@Name` to add the alias (the...
Not really sure why Quarkus's tests failed
Hmm, it seems that the cause of the exception is the white space after the colon. So deleting it would fix the issue. That being said, GraphQL specification has white...
Also, I have added https://github.com/smallrye/smallrye-graphql/pull/2160 fix for the `TypesafeTckClientModelSuite` issue where it executed the `*Behavior` tests with the Java Reflection implementation (via `mvn clean install`). That was the reason thy...