You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 19, 2023. It is now read-only.
Commit 41fe82a changed the GraphQLWebAutoConfiguration from allowing a GraphQLSchemaProvider as an option. How do we continue to use a GraphQLSchemaProvider?
The text was updated successfully, but these errors were encountered:
I encountered the same issue. I want to provide my own GraphQLSchemaProvider bean while still using the autoconfiguration. It is not possible since the bean GraphQLSchema doesn't exist (it cannot exist since my schema is dynamic).
@ConditionalOnBean({GraphQLSchema.class})
public class GraphQLWebAutoConfiguration implements ApplicationContextAware {
The issue is also valid for the GraphQLWebsocketAutoConfiguration. The auto configurations should be conditional on GraphQLSchema or GraphQLSchemaProvider.
@oliemansm, could you reopen this issue or should we create a new one?
Commit 41fe82a changed the GraphQLWebAutoConfiguration from allowing a GraphQLSchemaProvider as an option. How do we continue to use a GraphQLSchemaProvider?
The text was updated successfully, but these errors were encountered: