Skip to content

Commit

Permalink
Fixed uuid type
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelstaib committed Mar 5, 2020
1 parent cd4ed31 commit 60ae7e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Core/Types/Types/Scalars/UuidType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public override object Serialize(object value)

if (value is Guid guid)
{
return guid;
return guid.ToString();
}

throw new ScalarSerializationException(
Expand Down

0 comments on commit 60ae7e2

Please sign in to comment.