KGraphQL icon indicating copy to clipboard operation
KGraphQL copied to clipboard

Pure Kotlin GraphQL implementation

Results 26 KGraphQL issues
Sort by recently updated
recently updated
newest added

Passes test and also confirmed it works with a basic Relay query

There are a number of variables and functions that are declared at top level and leak through since they are not marked as `internal`. An example could be the `val...

Defining variables that either have an array or required array, didn't get parsed correctly. This fixes both `$ids: [Int]` and `$ids: [Int!]!`

Hi, If I do ``` query getNewInventoryQuery($vin: String!, $fromDate: LocalDate!) { parts: getInventory(stockNumber :"XXX-2343-1", fromDate: $fromDate){ restockDate stockNumber parts { oem addedDate manufacturer name } } } ``` and the...

Along with #38, it would be great if the schema supported suspendable execute. That way, when using a server that supports coroutines (like ktor with netty), expensive queries and mutations...

While it is possible to pass an optional context object to the "execute" function of the Schema which than will be propagated to the "suspendResolver"/"resolver" functions of the "query" block,...

Having an issue where fragments that operate on the same data node are not being merged, rather only the last fragment is being resolved. **Setup** ``` data class Contact(val name:...

Hi, Will you be supporting Print Schema as in the graphql-js reference implementation, that generates a schema.graphql document?

Would be great with suspendable property resolvers. Something like #37. But something that actually works. _I haven't gotten a full overview of how everything in this project works yet, so...