nodes
nodes copied to clipboard
A GraphQL JVM Client - Java, Kotlin, Scala, etc.
Allow fetching to be externalized when necessary.
Currently dependent on Jackson 2.9.6 which has some vulnerabilities (e.g. https://nvd.nist.gov/vuln/detail/CVE-2018-19362) Please consider updating to 2.9.8 as these vulnerabilities have been resolved in this version.
Do we have any support for using the Union in the response? This is the sample query I am trying to fetch the response for . ``` searchABCs (pageSize:100,pageNum:1,query:"{}") {...
I reuse custom types in my model class, for example a class called CreditCardNumber. Static fields in this class are also send with the request. On server side, the validation...
Hi Team, you have a very nice client for graphQL. Do you have any plans to publish to Maven Central?
I was testing out this library via the Spotify test API : https://spotify-graphql-server.herokuapp.com/graphql The query would be ``` query ($byName: String) { queryArtists(byName: $byName) { image albums { image name...
Hi, I'm trying to send a request on a model where I have at the same level two same nodes with identical names and arguments. So I used alias graphQLPropertyName....
Seems like there are only two ways to build a request, one thru a predefined class and the other thru a raw query string. Could you add support for `java.util.Map`...
GraphQL servers can format the errors any way they want, defined [here](https://github.com/graphql/express-graphql#options) Currently `io.aexp.nodes.graphql.internal.Error` is very rigid and only matches the default message and locations fields. It would be nice...
Unlike GraphQLProperty, GraphQLVariable(s) isn't class level -- I'm not sure how I'm suppose to use them to achieve my query/mutation. I'm trying to build the following mutation ```graphql mutation Create2FA($inputDescriptor:...