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

I see from the graphql/graphiql [README](https://github.com/graphql/graphiql) that I can customize various UI elements like this: My Custom Logo How do I go about that with graphql-java-kickstart/graphql-spring-boot? I can set certain...

enhancement
on hold

Hello, I need to customize the RuntimeWiring through the RuntimeWiring.Builder when the schema parser is being built. The class _SchemaParserBuilder_ is directly instantiated by _GraphQLJavaToolsAutoConfiguration_. So, it's impossible to customize/inject...

enhancement

### TL;DR ``` public class GraphQLWebAutoConfiguration { @Autowired(required = false) private Map executionStrategies; ``` is populated by spring as map `beanName -> bean`, when I have some `ExecutionStrategy` in spring...

enhancement

I understand that the project supports @GraphQLTest and GraphQLTestTemplate, which works outside of a transactional context properly. Problem is GraphQLTestTemplate uses TestRestTemplate which does not support @Transactional and therefore I'm...

**Current version of graphql-spring-boot and graphql-java-tool does not support Java modules** To reproduce the issue: 1. Follow the steps as provided by [Baeldung : Getting Started with GraphQL and Spring...

bug
help wanted

- Basic examples uses resolvers only with no configuration. I miss documentation for datafetchers, especially batch datafetchers, async datafetchers, parallel datafetchers. - Can we make resolvers to use this features,...

If a resolver has `Flux` return type and schema has `[...]` return type then it will crash on this line: `com/graphql-java-kickstart/graphql-java-tools/5.7.1/graphql-java-tools-5.7.1-sources.jar!/com/coxautodev/graphql/tools/TypeClassMatcher.kt:78` ``` is ListType -> { // realType is ParameterizedTypeImpl...

Version Used: 5.10.0 I'm building a realtime app and therefore make extremely use of the graphql subscriptions. When a user makes a subscription i internally return a "publisher" as it...

enhancement

Currently `graphql.timer.query.*` collect all queries regardless of response details. In particular, if a GraphQL query returns some errors, I cannot identify them from the metrics (metric name or tags). Is...

enhancement

Currently using WebSocket but RSocket would be better as it is designed for reactive programming. Although RSocket is not that widespread, so this is probably not of high priority

enhancement