Vojtech Polivka
Vojtech Polivka
Are there plans to support the latest Spring Boot version so that it can be listed in the Spring Initializr? What would need to be done to support it? Please...
## Making scalar coercion more powerful It would be a huge advantage to be able to access the context during serializing/deserializing scalars. It would allow to reduce a lot of...
```graphql mutation { createCat(enabled: Boolean): Cat! } ``` ```java public Cat createCat(boolean enabled) { ... } ``` when executing: ```graphql mutation { createCat { id } } ``` The value...
See https://github.com/graphql-java-kickstart/graphql-java-tools/issues/77#issuecomment-662855626 We should throw an error when building the schema.
To reproduce: ```java SchemaParserOptions options = SchemaParserOptions.newOptions() .contextClass(CustomContext.class) .build(); ``` ```graphql type Mutation { myMutation( id: ID! field: String! persist: Boolean! ): Entity } ``` The following method field resolver...
When you add a subscription resolver: ```java public class ImportantEventSubscription implements GraphQLSubscriptionResolver { public String importantEvent(String id, DataFetchingEnvironment environment) { return "hi"; } } ``` ```graphql extend type Subscription {...
`javax.mail` is deprecated so this project should migrate its dependency to `jakarta.mail`. I could open a PR if needed?