graphql-kotlin icon indicating copy to clipboard operation
graphql-kotlin copied to clipboard

Libraries for running GraphQL in Kotlin

Results 100 graphql-kotlin issues
Sort by recently updated
recently updated
newest added

### :pencil: Description With the idea of proving support for returning a `CompletableFuture` in `FederatedTypeResolver` a new sealed interface is added ```kotlin sealed interface TypeResolver { val typeName: String }...

changes: minor
module: generator

up to version 5.x we could use our Java Pojos ``` public class SomeOldPojo { public String value; } ``` ``` fun pojo(pojo: SomeOldPojo): String? = "hello ${pojo.value}" ``` ```...

**Library Version** 6.1.0 **Describe the bug** Federation v1 defined scalar as `_FieldSet`. Federation v2 introduced namespacing of the federated definintions (defaults to `federation__` unless explicitly imported through `@link` directive) and...

type: bug
module: generator

**Problem Description** When using graphql-kotlin in a federated-graph scenario with server-side caching via Apollo, the Apollo federation layer makes its caching decisions based on the `cache-control` HTTP header sent with...

type: enhancement

**Library Version** 6.0.0 **Describe the bug** I'm using `@GraphQLName` and `@JsonProperty` annotations to change the name of some enum values in our graphql schema. The generated schema is correct, and...

type: bug

**Library Version** 6.1.0 **Describe the bug** When loading data via a `DataLoader` through the `DataFetchingEnvironment` in a `FederatedTypeResolver`, the execution hangs and will never finish. This is probalby related to...

type: bug

**Is your feature request related to a problem? Please describe.** Consider the following query: ```kt fun echo(json: JsonNode?): JsonNode? = json ``` The type `JsonNode` is an abstract class and...

type: enhancement
module: generator

**Is your feature request related to a problem? Please describe.** Currently I'm working on implementing graphql in a couple of my applications. We have several schema files that get combined...

type: enhancement
module: client

**Library Version** 5.5.0 **Describe the bug** Considering the following schema: ``` input Filter { AND: [Filter!] OR: [Filter!] id: StringFilter name: StringFilter } ``` The maven plugin generates the following...

type: bug
module: client

**Is your feature request related to a problem? Please describe.** I've had a few cases where there was a problem generating a valid schema from my code. The issue is...

type: enhancement
module: generator