graphql-java-tools
graphql-java-tools copied to clipboard
A schema-first tool for graphql-java inspired by graphql-tools for JS
Hi. When custom directive is declared in schema, for instance directive @notsortable on FIELD_DEFINITION then expected behaviour is that this directive will be in GraphQLSchema object. This does not happen...
I want to use graphql-java-tools based on Map. When Map contains fields of List type, it will report **_Java class is not a list or generic type information was lost:...
I'm using the graphql tools from Kotlin, and I would love to use extension functions in my resolver classes for readability: ```kotlin package some.package class Service( val name: String, val...
``` 2019-02-25 14:34:38.455 WARN 20644 --- [ main] o.s.w.c.s.GenericWebApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'schemaParser' defined in class path...
Hello, We are using graphql-java-tools 5.4.1 with DataLoader and we love it so far. One of the pain points we encountered is that it spits out some cryptic messages that...
I am unable to use `@Caching` with GraphQL on Spring Boot 2. It works fines when cache hasn't been created, but when cache exists and I request it, I get...
The issue is relevant for 5.3.1+. I'm trying to create an interface with a polymorphic connection field, which requires interface to declare it as a union of all implementation types,...
I currently extensively use the `graphql-java-tools` library with success. But I have a use case where I would like to relax/bypass the type checking of objects returned from a resolver....
When you add a subscription resolver: ```java public class ImportantEventSubscription implements GraphQLSubscriptionResolver { public String importantEvent(String id, DataFetchingEnvironment environment) { return "hi"; } } ``` ```graphql extend type Subscription {...
Hello, First of all, thank you for this fantastic library. I'm using your library along with `graphql-java` in an OSGi context, specifically Apache Karaf. I believe I'm running into a...