Returned when a Price scope conflicts with an existing one during an Update Product request.

Every Price of a Product Variant must have a distinct combination of currency, Customer Group, country, and Channel that constitute the scope of a Price.
interface GraphQLDuplicatePriceScopeError {
    code: "DuplicatePriceScope";
    conflictingPrice: Price;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

code: "DuplicatePriceScope"
conflictingPrice: Price

Conflicting Embedded Price.

Generated using TypeDoc