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

**Is your feature request related to a problem? Please describe.** In our app, it is normal and expected to have non-login users accessing the pages, where we will return as...

enhancement

Currently if a resolver throws a NullPointerException it cannot be handled by the ErrorHandler, because GraphqlErrorBuilder has a assertNotNull on the message and NullPointerException does not return a Message. Assert.assertNotNull(this.message,...

enhancement

**Describe the bug** commons-text (>= 1.5 and

bug

Hi, Graphql-java provides an option to override this property value to disable the default instrumentation.But there is no way to set this property through kickstart library. Can you please tell...

bug

Hi, Do you have support for apollographql [federation-jvm](https://github.com/apollographql/federation-jvm) in graphql-spring-boot? If you already have some schema files defined with custom directives, this project fails to generate schema. Especially for `type...

enhancement

SimpleInstrumentation parameters.getQuery() show all query , bug i just execute one query query a{ functionA(code:""){ token, result{ telephone } } } query b{ functionB{ telephone, name } }

bug

**Describe the bug** Input GraphQL types cause this error. As soon as I use an input for a Mutation I get the following error in the console, and the schema...

bug

### Discussed in https://github.com/graphql-java-kickstart/graphql-spring-boot/discussions/809 Originally posted by **PhilippS93** April 21, 2022 Hello! I am using the custom directive sample [here](https://github.com/graphql-java-kickstart/samples/blob/master/directives/src/main/java/directives/RangeDirective.java) When using it and providing wrong input, the error message...

- dependencies ``` com.graphql-java-kickstart graphql-spring-boot-starter 12.0.0 com.graphql-java-kickstart graphql-java-tools 12.0.0 ``` - Schema ``` scalar Long type Mutation { } ``` - yml config ``` graphql: servlet: enabled: true cors-enabled: true...

bug

**Bug Description** I have a project that contains a both rest and graphql (via this kickstart). I have rest cors configured within a `WebMvcConfigurer` implementation that overrides the `addCorsMapping` and...

bug