Robert Pospisil

Results 19 issues of Robert Pospisil

It is now possible to filter APIs with `apisToGenerate` based on their full path, like `/v1/dogs`. Prior to it, it was only possible to filter for the first part of...

Enhancement: Feature
Feature: Generator

If an interface has a key annotation, quarkus fails to start. This worked fine with quarkus 3.8.3 Reproducer https://github.com/robp94/code-with-quarkus-federation-error ``` 2024-03-28 15:44:32,782 ERROR [io.qua.run.boo.StartupActionImpl] (Quarkus Main Thread) Error running Quarkus:...

Follow-up issue of https://github.com/smallrye/smallrye-graphql/issues/1366 There seems to be a discrepancy between client and server @Query fun test2(list: List): String @Query fun test3(list: @NonNull List): String result in schema test2(list: [String!]!):...

If I have a class like this: ``` public class TestObject { private List list; @Pattern(regexp = "^1") private String nonList; ... ``` I get a schema like this: ```...

Many versions are quite old, is this intended? Dependabot has nearly no PRs. Are there plans to support apollo version 4.0? 3.8.3 and 3.8.4 had no breaking changes. 1.9.21 is...

### Describe the bug Similar to https://github.com/quarkusio/quarkus/issues/42000 lists as argument do not work either. But with a different exception: ``` java.lang.ArrayStoreException: org.acme.ObjectB at org.jboss.marshalling.cloner.SerializingCloner.clone(SerializingCloner.java:229) at org.jboss.marshalling.cloner.SerializingCloner.clone(SerializingCloner.java:132) at org.jboss.marshalling.cloner.SerializingCloner.cloneFields(SerializingCloner.java:452) at org.jboss.marshalling.cloner.SerializingCloner.initSerializableClone(SerializingCloner.java:372)...

kind/bug
area/kotlin

Some queries just do not work anymore, we are getting a null pointer on building the request. The query is just null. ![image](https://github.com/user-attachments/assets/64fe7462-9ba1-4808-9cb1-73db0658d06c) io.smallrye.graphql.client.vertx.typesafe.VertxTypesafeGraphQLClientProxy#request ``` "exceptionType":"java.lang.NullPointerException", "message":"Value in JsonObjects name/value...

Having a `@Source` Method with both a List and non List Variant fails with Kotlin, while the same works in java. Kotlin worked until quarkus 3.8.5. Removing one of the...