Skip to content

Commit

Permalink
VCST-1722: Manufacturer Part Number should be accessible (#10)
Browse files Browse the repository at this point in the history
feat: Manufacturer Part Number (MPN) should be accessible. A manufacturer part number (MPN) is a unique alphanumeric code assigned by a manufacturer to identify a specific product or component. It is used primarily for part tracking in inventory.
  • Loading branch information
OlegoO authored Aug 29, 2024
1 parent 64c2cc3 commit 8b059b2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/VirtoCommerce.XCatalog.Core/Schemas/ProductType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,8 @@ public ProductType(IMediator mediator, IDataLoaderContextAccessor dataLoader)

Field(d => d.IndexedProduct.OuterId, nullable: true).Description("The outer identifier");

Field(d => d.IndexedProduct.Gtin, nullable: true).Description("Global Trade Item Number");
Field(d => d.IndexedProduct.Gtin, nullable: true).Description("Global Trade Item Number (GTIN)");
Field(d => d.IndexedProduct.ManufacturerPartNumber, nullable: true).Description("Manufacturer Part Number (MPN)");

Field<StringGraphType>(
"brandName",
Expand Down

0 comments on commit 8b059b2

Please sign in to comment.