CreateProductVariantVersionInput
Input for the createProductVariantVersion mutation
input CreateProductVariantVersionInput {
canBeReturnedForDays: Int
categoricalCharacteristicValues: [CategoricalCategoryCharacteristicValueInput!]!
description: String!
mediaIds: [UUID!]!
name: String!
numericalCharacteristicValues: [NumericalCategoryCharacteristicValueInput!]!
productVariantId: UUID!
retailPrice: Int!
taxRateId: UUID!
weight: Float!
}
Fields
CreateProductVariantVersionInput.canBeReturnedForDays
● Int
scalar
The amount of days for which an instance of the ProductVariant can be returned after purchase, if null can be returned indefinitely.
CreateProductVariantVersionInput.categoricalCharacteristicValues
● [CategoricalCategoryCharacteristicValueInput!]!
non-null input
The CategoricalCategoryCharacteristicValues of the ProductVariant, must be compatible with the Categories of the associated Product.
CreateProductVariantVersionInput.description
● String!
non-null scalar
The description of the ProductVariant.
CreateProductVariantVersionInput.mediaIds
● [UUID!]!
non-null scalar
The associated Media files.
CreateProductVariantVersionInput.name
● String!
non-null scalar
The name of the ProductVariant.
CreateProductVariantVersionInput.numericalCharacteristicValues
● [NumericalCategoryCharacteristicValueInput!]!
non-null input
The NumericalCategoryCharacteristicValues of the ProductVariant, must be compatible with the Categories of the associated Product.
CreateProductVariantVersionInput.productVariantId
● UUID!
non-null scalar
The id of the ProductVariant this ProductVariantVersion belongs to.
CreateProductVariantVersionInput.retailPrice
● Int!
non-null scalar
The retail price of the ProductVariant.
CreateProductVariantVersionInput.taxRateId
● UUID!
non-null scalar
The associated TaxRate
CreateProductVariantVersionInput.weight
● Float!
non-null scalar
The weight of a single instance of the ProductVariant.
Member Of
createProductVariantVersion
mutation