Adrian Baker
Adrian Baker
If the fetcher is configured to use GET, the result is that even mutations are issued as GETs. From the closest thing to a spec in this area (https://github.com/graphql/graphql-over-http/blob/main/spec/GraphQLOverHTTP.md): >...
I'm able to connect to my Redis cluster using the redis-cli: ``` > redis-cli -c -p 9092 127.0.0.1:9092> ``` However, adding a connection via the RedisInsight connection fails with: ```...
The client contains an internal cache of content types. This cache becomes stale if the content model is changed, with the result that the com.contentful.java.cda.CDAEntry#contentType method returns an incorrect content...
Currently granting read permissions to a Kinesis stream doesn't include sufficient permissions for consumers that use fan-out mode. Note that the KCL library uses fan-out out mode by default, you...
See the GET section of https://github.com/graphql/graphql-over-http/blob/main/spec/GraphQLOverHTTP.md for the convention of the serialization format when GET is used instead of POST.
When using a high number (eg hundreds of thousands/millions) of RedissonJsonBucket instances, I found that the use of the JsonCodecWrapper generates an enormous number of values being entered into org.redisson.command.RedisExecutor#CODECS...
I have a server implementing the `graphql-ws` protocol that is enforcing a JWT is present in the `connection_init` payload under `connectionParams.token`, as per https://github.com/enisdenjo/graphql-ws/discussions/263 . In Apollo Studio I can...
[graphql-java 20.0](https://github.com/graphql-java/graphql-java/releases/tag/v20.0) introduced the concept of a lightweight data fetcher, to reduce the amount of redundant `DataFetchingEnvironment` objects wastefully created when just calling simple object properties. Ideally graphql.kickstart.tools.resolver.TrivialMethodFieldResolverDataFetcher would implement...
I'm finding that I see significant numbers of duplicates if I hit throttling on the kinesis stream. Obviously I realise I want to avoid throttling, but I'm wondering this is...