Skip to content

Commit 6b3a455

Browse files
committed
fix: make Address Id optional
1 parent 72d7643 commit 6b3a455

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/VirtoCommerce.ProfileExperienceApiModule.Data/Schemas/InputMemberAddressType.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ public class InputMemberAddressType : InputObjectGraphType<MemberAddress>
77
{
88
public InputMemberAddressType()
99
{
10-
Field(x => x.Id).Description("Id");
10+
Field(x => x.Id, nullable: true).Description("Id");
1111
Field(x => x.City).Description("City");
1212
Field(x => x.CountryCode).Description("Country code");
1313
Field(x => x.CountryName, true).Description("Country name");

0 commit comments

Comments
 (0)