Skip to content

Commit

Permalink
Fixed Variable Name
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelstaib committed Oct 3, 2023
1 parent c195ced commit c937936
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand All @@ -30,7 +30,7 @@ internal sealed class CompilerContext(ISchema schema, DocumentNode document, boo
public IImmutableList<ISelectionSetOptimizer> Optimizers { get; private set; } =
ImmutableList<ISelectionSetOptimizer>.Empty;

public bool EnableNullBubbling { get; } = disableNullBubbling;
public bool EnableNullBubbling { get; } = enableNullBubbling;

public void Initialize(
ObjectType type,
Expand Down

0 comments on commit c937936

Please sign in to comment.