Marek Skácelík

Results 11 issues of Marek Skácelík

When working with multiple queries in one operation the hierarchy of spans (relations of the queries) tend to have non deterministic results. GraphQLApi class: ```java @WithSpan @Query public List getProducts()...

/cc @jmartisk fixes: #2111 Added a default name for parameters not configured to be part of the runtime. The default names are equivalent to the Java Reflection API names (arg0,...

Via https://spec.graphql.org/draft/#sec-Response-Format quote: > If the request included execution, the response map must contain an entry with key data. The value of this entry is described in the “Data” section....

There seems to be a bug in Yasson version 3.0.0 and higher that affects the `@JsonbCreator` constructor when it has a Generic Type parameter. This issue is not present in...

bug

The tests placed at https://github.com/smallrye/smallrye-graphql/tree/main/server/tck stopped being executed despite being once in the past.

I have come across a weird behavior after updating Java to version 21. When having a record with a `List` field, the serialization of the object seems to behave differently....

bug

Code ```kotlin @Query fun foo(bar: List): Int { // ... } ``` Generates this given schema: ```graphql "Query root" type Query { foo(bar: [Int]!): Int! } ``` but it should...

When working with nested collections, i.e.: ```java @Query List returnStringListList(List someStrings); ``` Expected: `query returnStringListList($someStrings: [[String]]) { returnStringListList(someStrings: $someStrings) }` Actual: `query returnStringListList($someStrings: [ListInput]) { returnStringListList(someStrings: $someStrings) }` The cause...

issue: https://issues.redhat.com/browse/WFLY-20659 Hopefully I applied correctly all the correctors.

issue: https://issues.redhat.com/browse/WFCORE-7258 Hopefully I applied correctly all the correctors.