Returned when a Price key conflicts with an existing key.

Keys of Embedded Prices must be unique per ProductVariant.
interface GraphQLDuplicatePriceKeyError {
    code: "DuplicatePriceKey";
    conflictingPrice: Price;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

code: "DuplicatePriceKey"
conflictingPrice: Price

Conflicting Embedded Price.

Generated using TypeDoc