From 2eb667af560fcf827bc3fd328373c50d35a58656 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 15 Apr 2024 09:36:44 +0200 Subject: [PATCH] Fix source URL nullability. --- .../Contents/GraphQL/Types/Assets/AssetGraphType.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/Squidex.Domain.Apps.Entities/Contents/GraphQL/Types/Assets/AssetGraphType.cs b/backend/src/Squidex.Domain.Apps.Entities/Contents/GraphQL/Types/Assets/AssetGraphType.cs index 5e74d0e60..e5751ae77 100644 --- a/backend/src/Squidex.Domain.Apps.Entities/Contents/GraphQL/Types/Assets/AssetGraphType.cs +++ b/backend/src/Squidex.Domain.Apps.Entities/Contents/GraphQL/Types/Assets/AssetGraphType.cs @@ -246,7 +246,7 @@ internal sealed class AssetGraphType : SharedObjectGraphType AddField(new FieldType { Name = "sourceUrl", - ResolvedType = Scalars.NonNullString, + ResolvedType = Scalars.String, Resolver = SourceUrl, Description = FieldDescriptions.AssetSourceUrl });