Skip to content

Commit

Permalink
fix(graphql): Set max execution depth to allow inspection query (#1679)
Browse files Browse the repository at this point in the history
Missing some depth to allow the inspection query through 

Issue #1680
  • Loading branch information
oskogstad authored Jan 13, 2025
1 parent 470e5a9 commit 6265110
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public static IServiceCollection AddDialogportenGraphQl(this IServiceCollection
.AddType<SearchDialogValidationError>()
.AddType<SearchDialogForbidden>()
.AddType<SetSystemLabelEntityNotFound>()
.AddMaxExecutionDepthRule(10)
.AddMaxExecutionDepthRule(12)
.AddInstrumentation()
.InitializeOnStartup()
.Services;
Expand Down

0 comments on commit 6265110

Please sign in to comment.