mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-26 11:39:14 +00:00
Prior to this commit, the GraphQL auto-configuration would consider many bean types like `DataFetcherExceptionResolver` and `SubscriptionExceptionResolver` to configure the `GraphQlSource`. It would also configure a default `ConnectionTypeDefinitionConfigurer`. This commit will detect all `TypeDefinitionConfigurer` beans defined in the application and configure them in addition to the `ConnectionTypeDefinitionConfigurer`. Closes gh-39118