We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94af249 commit 121e08cCopy full SHA for 121e08c
datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/GmsGraphQLEngine.java
@@ -830,10 +830,10 @@ public GraphQLEngine.Builder builder() {
830
builder
831
.addDataLoaders(loaderSuppliers(loadableTypes))
832
.addDataLoader("Aspect", context -> createDataLoader(aspectType, context))
833
- .configureRuntimeWiring(this::configureRuntimeWiring)
834
.setGraphQLQueryComplexityLimit(graphQLQueryComplexityLimit)
835
.setGraphQLQueryDepthLimit(graphQLQueryDepthLimit)
836
- .setGraphQLQueryIntrospectionEnabled(graphQLQueryIntrospectionEnabled);
+ .setGraphQLQueryIntrospectionEnabled(graphQLQueryIntrospectionEnabled)
+ .configureRuntimeWiring(this::configureRuntimeWiring);
837
return builder;
838
}
839
0 commit comments