Ben Tatham

Results 19 comments of Ben Tatham

Thanks so much for the detailed response. Yes, I'm using com.graphql-java-kickstart:graphql-java-tools:5.3.5, which seems to be the latest in maven central (after a couple of groupId moves in the past). If...

Still no luck. I've trimmed down my schema to have just the `QueryResolver`, and rely on the fact the `useDefaultGenericWrapper` is true by default. I've checked out the project, so...

Thanks for offering...I've extracted some code into this project: https://github.com/bentatham/graphql-vertx-jooq-example There is a GraphQLModuleTest that you can run (junit) and will show the error I'm getting.

In your example in the initial response, it "works" because the object (Future) is `null`, so the error does not get hit. If I return `null` for the `Future`, it...

Perhaps it is hard to see from the code, but `QueryResolver`, it is calling `toFuture` on the SingleJust, so it is actually returning a `Future` (`FutureSingleObserver` to be precise, as...

I've updated the project to remove the dependency (which is in jcenter, not maven central)..

This would be great for a single PDF file, as well as single-page HTML.

Still a problem in 1.18.1. ```java return switch (subObject) { case Map map -> replaceReferencesMap(map, root); case List list -> replaceReferencesList(list, root); case String string -> replaceReferencesString(string, root); case null,...

According to [efs-utils #130](https://github.com/aws/efs-utils/pull/130), this has been fixed in [v1.4.9 of aws-efs-csi-driver](https://github.com/kubernetes-sigs/aws-efs-csi-driver/releases/tag/v1.4.9).

Workaround for now is to use env vars instead, which does remove quotes appropriately. ``` env: - name: INFLUXDB_DATA_MAX_VALUES_PER_TAG value: "10000000" ```