Skip to main content

BatchProductVariantDataInput

Variant data a product in a variant group. No the variant group itself

input BatchProductVariantDataInput {
attributes: [BatchProductVariantAttributeInput]
isVariantOf: String
}

Fields

attributes ● [BatchProductVariantAttributeInput]

The values of Attributes which exists in the variant group.

isVariantOf ● String

The product id of the variant group this variant is part of

Example

{
"attributes": [
{
"id": 0,
"language": "EN",
"value": "Red"
}
],
"isVariantOf": "12300"
}