The given combination of values of a Product Variant conflicts with an existing one. Every Product Variant must have a distinct combination of SKU, prices, and custom attribute values.

interface DuplicateVariantValuesError {
    code: "DuplicateVariantValues";
    message: string;
    variantValues: VariantValues;
}

Properties

code: "DuplicateVariantValues"
message: string
variantValues: VariantValues

The offending variant values.