graphql-spring-boot icon indicating copy to clipboard operation
graphql-spring-boot copied to clipboard

GraphQL and GraphiQL Spring Framework Boot Starters - Forked from oembedler/graphql-spring-boot due to inactivity.

Results 74 graphql-spring-boot issues
Sort by recently updated
recently updated
newest added

We are in the process of porting from servlet to WebFlux and there doesn't seem to be a way to handle file uploads in WebFlux. This probably involves porting [GraphQLMultipartInvocationInputParser](https://github.com/graphql-java-kickstart/graphql-java-servlet/blob/master/graphql-java-servlet/src/main/java/graphql/kickstart/servlet/GraphQLMultipartInvocationInputParser.java)...

enhancement

**Describe the bug** Executing a query excepting an argument, times out in case the query is run with an undefined variable without reaching the resolver when using the [AsyncTaskDecorator](https://github.com/graphql-java-kickstart/graphql-spring-boot/issues/729#issuecomment-977244511) solution...

bug

I set graphql.servlet.tracing-enabled and actuator-metrics true but they do not have any effect with WebFlux

bug

File upload works great if Upload is a direct input parameter of a query or nested in an array, but fails if it is nested. Here are the examples to...

bug

I am playing with graphql lately and I was trying to mimic an attack where a recursive query is sent by the client to the GraphQL server and it seems...

bug

I am writing this to discuss an issue I am facing once in a while. This is more an open discussion on the feasibility of this feature, but I think...

enhancement

Hello, in our project we use spring boot and this nice lib for GQL with microservice architecture. Last few days, I am trying to improve start time and test start...

enhancement

When I test [samples/spring-boot-webflux](https://github.com/graphql-java-kickstart/samples/blob/master/spring-boot-webflux/build.gradle), An error occurs. ``` implementation "org.springframework.boot:spring-boot-starter-webflux" implementation "com.graphql-java-kickstart:graphql-spring-boot-starter:$LIB_GRAPHQL_SPRING_BOOT_VER" ``` ```javascript const webSocket = new WebSocket(`ws://localhost:8080/subscriptions`); webSocket.onopen = function () { var query = `subscription { hello...

bug

Hi, in version 11.1.0 there are no occurences of the `http.server.request` metric for the graphql calls. I've tried every version and found that it disappeared with version 8.1.0. Before that...

bug

Hi, Is it possible to handle client exception(invalid input json or invalid query) using @ExceptionHandler annotation. I am able to handle any server side exception like custom exceptions or say...

enhancement