Skip to content

Commit

Permalink
fix(instropection): fix configuration application order (#10579)
Browse files Browse the repository at this point in the history
  • Loading branch information
david-leifker committed May 23, 2024
1 parent 94af249 commit 121e08c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -830,10 +830,10 @@ public GraphQLEngine.Builder builder() {
builder
.addDataLoaders(loaderSuppliers(loadableTypes))
.addDataLoader("Aspect", context -> createDataLoader(aspectType, context))
.configureRuntimeWiring(this::configureRuntimeWiring)
.setGraphQLQueryComplexityLimit(graphQLQueryComplexityLimit)
.setGraphQLQueryDepthLimit(graphQLQueryDepthLimit)
.setGraphQLQueryIntrospectionEnabled(graphQLQueryIntrospectionEnabled);
.setGraphQLQueryIntrospectionEnabled(graphQLQueryIntrospectionEnabled)
.configureRuntimeWiring(this::configureRuntimeWiring);
return builder;
}

Expand Down

0 comments on commit 121e08c

Please sign in to comment.