roookeee
roookeee
Preamble: I have been sent here by @schauder in spring-data-relational in regards to https://github.com/spring-projects/spring-data-relational/issues/1300. Currently `JdbcTemplate` does not support `SELECT` statements that use the `VALUES` keyword. Here is an example...
Consider the following federated GraphQL type structure: ``` type BaseType { items: [SomeType!]! } type SomeType { id: ID! someRelation: SomeOtherTypeFromAnotherGraph! // this is resolved by a federated type resolver...
**Library Version** 6.1.0 **Describe the bug** When loading data via a `DataLoader` through the `DataFetchingEnvironment` in a `FederatedTypeResolver`, the execution hangs and will never finish. This is probalby related to...
Most mappers (Orika, BULL etc.) in this repository had new releases since the last benchmark run from february - let's get some up to date data and update the readme's...
See [here](https://github.com/arey/java-object-mapper-benchmark). Object mapping is used very frequently and some object mappers rely heavily on reflection, some use code generation and others make heavy use of lambda chaining (functional programming)....
**Is your feature request related to a problem? Please describe.** `FederatedTypeResolver` is specified to provide a `List` which makes the idiomatic approach (specifying `T` as the actual type and not...
See #2677 for more information about this PR.
`RepositoryTagsProvider` of `spring-boot-actuator` is based on `RepositoryMethodInvocation` which is defined here. We would like to tag our repository metrics based on the passed arguments to provide more granular metrics. For...
**Context** We are using HikariCP in a GraphQL Spring Boot application inside of Kubernetes. We are connecting to an AWS Aurora Serverless V2 instance in the same AZ. Our connections...
**What is the issue** Programmatically added `Docket` via `ApplicationContext.registerBean` aren't found anymore. We use this to define multiple dockets for a dynamic amount of tenants at runtime via groups. **Where...