From c937936e5d4dcaf39f32d943f450b83f94022cb3 Mon Sep 17 00:00:00 2001 From: Michael Staib Date: Tue, 3 Oct 2023 09:27:02 +0200 Subject: [PATCH] Fixed Variable Name --- .../Execution/Processing/OperationCompiler.CompilerContext.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/HotChocolate/Core/src/Execution/Processing/OperationCompiler.CompilerContext.cs b/src/HotChocolate/Core/src/Execution/Processing/OperationCompiler.CompilerContext.cs index 66bbfbd898e..6659b83b39b 100644 --- a/src/HotChocolate/Core/src/Execution/Processing/OperationCompiler.CompilerContext.cs +++ b/src/HotChocolate/Core/src/Execution/Processing/OperationCompiler.CompilerContext.cs @@ -8,7 +8,7 @@ namespace HotChocolate.Execution.Processing; public sealed partial class OperationCompiler { - internal sealed class CompilerContext(ISchema schema, DocumentNode document, bool disableNullBubbling) + internal sealed class CompilerContext(ISchema schema, DocumentNode document, bool enableNullBubbling) { public ISchema Schema { get; } = schema; @@ -30,7 +30,7 @@ internal sealed class CompilerContext(ISchema schema, DocumentNode document, boo public IImmutableList Optimizers { get; private set; } = ImmutableList.Empty; - public bool EnableNullBubbling { get; } = disableNullBubbling; + public bool EnableNullBubbling { get; } = enableNullBubbling; public void Initialize( ObjectType type,