graphql-java-tools
graphql-java-tools copied to clipboard
A schema-first tool for graphql-java inspired by graphql-tools for JS
stack overflow!! my example: `WhereTree` nested recursive ; ```graphql enum LJ_TYPE { AND, OR, NOT, DSELF } enum OPERATOR { EQ,NE,GE,LE,GT,LT,BTW,IN,LK, EMPTY,NULL,EXI,NEXI,TRUE,FALSE,NNULL,NEMPTY } input WhereLeaf { s:String, o:OPERATOR, l:ExpressItem, r:ExpressItem,...
This seems to be a regression of #198 as far as I can tell. It seems to be the same issue that was supposedly fixed in 5.7, however, I'm still...
## Description Disabling introspection by setting introspectionEnabled to false does not work ### Expected behavior Field types that starts with `__` is blocked and not exposed. ### Actual behavior Field...
https://sonarcloud.io/organizations/graphql-java-kickstart/projects
I have the following (Kotlin) data class: ```kotlin data class EntityMatch ( val text: String, val value: T?, val start: Int, val end: Int ) ``` Now I have a...
Currently using graphql-spring-boot 5.10.0 I have an interface that defines two properties. Both properties are defined with a type that is a union, this is done so that it can...
## Description A union can only contain object types. The class scanner fails to deeply scan a union if it contains another union or interface type. ### Expected behavior A...
## Description Hi, I'm not quite sure if it's a bug, but I found a strange behavior after updating to version **6.1.0**. Since this version checked exceptions thrown in field...
I'd like to preface this by saying I am new to GraphQL and this could easily be an issue in my Query. I have recreated the issue with unit tests...
## Description Trying to set custom type: ```kotlin import com.fasterxml.jackson.databind.node.ObjectNode //... val schema = SchemaParser.newParser() schema.dictionary("EntityCreateInput", ObjectNode::class.java) schema.dictionary("EntityUpdateInput", ObjectNode::class.java) ``` ### Actual behavior Getting error: > Failed to instantiate [graphql.kickstart.tools.SchemaParser]:...