From 386abb370c93f700489a2266936ce38018a30b82 Mon Sep 17 00:00:00 2001 From: Michael Staib Date: Mon, 30 Sep 2024 14:08:44 +0200 Subject: [PATCH] Reconfigured allowed ofType depth --- .../Core/src/Validation/Rules/IntrospectionDepthVisitor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/HotChocolate/Core/src/Validation/Rules/IntrospectionDepthVisitor.cs b/src/HotChocolate/Core/src/Validation/Rules/IntrospectionDepthVisitor.cs index 777de38fb06..bf327a311af 100644 --- a/src/HotChocolate/Core/src/Validation/Rules/IntrospectionDepthVisitor.cs +++ b/src/HotChocolate/Core/src/Validation/Rules/IntrospectionDepthVisitor.cs @@ -20,7 +20,7 @@ private readonly (FieldCoordinate Coordinate, ushort MaxAllowed)[] _limits = (new FieldCoordinate("__Type", "inputFields"), 1), (new FieldCoordinate("__Type", "interfaces"), 1), (new FieldCoordinate("__Type", "possibleTypes"), 1), - (new FieldCoordinate("__Type", "ofType"), 8), + (new FieldCoordinate("__Type", "ofType"), 16), }; protected override ISyntaxVisitorAction Enter(