David Kubečka
David Kubečka
I've run into a similar issue. In my case the input spec is ``` BadRequestError_errors: type: object properties: parameters: type: object additionalProperties: oneOf: - type: string description: The actual value...
Note: Digging a little bit deeper I realized that this is in fact a regression because it stopped working (both for Koltin and Java) in 7.0.0 while it worked in...
@babyfish-ct What problem do you face when you use the `kotlin.collections.List` in `@BatchMapping` method? We do exactly that in our Kotlin app and there seem to be no issues.
Before filing this issue, I looked at the existing ones including #1511 and now I'm unsure whether my original issue description was clear enough so I will try again :-)...
I see now where the misunderstanding might come from :-) I'm not asking for the Blaze integration with `spring-data-graphql` but for the integration of the existing `blaze-persistence-integration-graphql` with `spring-data-jpa`, namely...
AFAIK `spring-graphql` provides mostly the convenience controller annotations for automatic wiring of DataFetchers and query Arguments. As you said (and I agree with that), this can be utilized as is...
Thanks for accepting this issue :-) Could you please briefly describe your battle plan for how to implement that? I've briefly looked at how `spring-data-jpa` processes the named queries. It...
`GraphQLExecutor` is the suggested new interface, its name inspired by `JpaSpecificationExecutor` which "enhances" the `find` methods with a `Specification` parameter. Similarly, the proposed `GraphQLExecutor` could enhance the standard `find` methods...
Yes, I propose that BP supports it. Sorry for being unclear :-) Well, `spring-graphql` concentrates on the automatic wiring of controllers and input types to queries/mutations. It doesn't assume anything...
Yes, that was one of the options I had in mind. The other one was to pass `EntityViewSetting` directly. The first option has both pros and cons: - Pros: It...