Graphql V13.0.0 issue - Failed to introspect Class [graphql.kickstart.autoconfigure.editor.graphiql.GraphiQLAutoConfiguration] #857
-
After upgrading to V13.0.0 from V12.0.0, I am getting below error during application start up but with V12.0.0 there is no issue as application is started successfully.
Note:
Error |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Can you remove the |
Beta Was this translation helpful? Give feedback.
Can you remove the
spring-webflux
dependency entirely and try again. The stacktrace shows it complains about not being able to load theRouterFunction
class which is provided by that dependency. However you're overriding that dependency and marking it to be only used intest
scope, making it unavailable when trying to start the application.