Interface GraphQLDuplicatePriceKeyError

All Superinterfaces:
GraphQLErrorObject
All Known Implementing Classes:
GraphQLDuplicatePriceKeyErrorImpl

Returned when a Price key conflicts with an existing key.

Keys of Embedded Prices must be unique per ProductVariant.


Example to create an instance using the builder pattern

     GraphQLDuplicatePriceKeyError graphQLDuplicatePriceKeyError = GraphQLDuplicatePriceKeyError.builder()
             .conflictingPrice(conflictingPriceBuilder -> conflictingPriceBuilder)
             .build()