Roland Wolf

Results 6 comments of Roland Wolf

I'm not sure if its resolves your issue, but my implementation uses [graphql-java-extended-scalars](https://github.com/graphql-java/graphql-java-extended-scalars). So I've setup DateTime in plugin config ``` java.time.OffsetDateTime ``` And added ExtendedScalars.DateTime to my auto config...

## Chained setters as a concept Chained setters fills a gap where you want to have the shorthand that builders give. ``` builder.firstPropery(1) .secondPropery(List.of()) .thirdPropery(null) ``` but you don't want...

Had a look. As indicated and suspected: [ArgumentValue](https://docs.spring.io/spring-graphql/docs/current/api/org/springframework/graphql/data/ArgumentValue.html) is not `serializable`, which seems to be the root cause. I'm unsure how to fix this, as `ArgumentValue` is purposefully not part...

I omitted Kotlin, when implementing, because of the above comment, and because there is no build-in wrapper like `ArgumentValue` to wrap it with. `ArgumentValue` is specifically supported in `graphql-java` project,...

I poked a bit around in this codebase, and it seems to me that processing input isn't within the scope of this project. Not an expert, could be wrong. From...

My workaround, meanwhile, is using the config ``` jakarta.annotation.Generated @jakarta.validation.constraints.NotNull ``` But yea, a general fix could be nice. Maybe `GeneratedLanguage` option could have another option like `JAVA_JAKARTA` and [this...