From c779ca74f6e17628bc4930ad81372f6516da57c8 Mon Sep 17 00:00:00 2001 From: Jonas Schade Date: Fri, 21 Mar 2025 20:17:20 +0100 Subject: [PATCH] refactor: :technologist: removed sealed from JsonType scalar --- src/HotChocolate/Core/src/Types/Types/Scalars/JsonType.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/HotChocolate/Core/src/Types/Types/Scalars/JsonType.cs b/src/HotChocolate/Core/src/Types/Types/Scalars/JsonType.cs index 3e60377444f..5b3c44b2c0c 100644 --- a/src/HotChocolate/Core/src/Types/Types/Scalars/JsonType.cs +++ b/src/HotChocolate/Core/src/Types/Types/Scalars/JsonType.cs @@ -14,7 +14,7 @@ namespace HotChocolate.Types; /// /// The runtime representation of the JSON scalar is an . /// -public sealed class JsonType : ScalarType +public class JsonType : ScalarType { /// /// Initializes a new instance of .