Skip to main content

BatchProductDescriptionInput

No description

input BatchProductDescriptionInput {
primary: [LocalizedRichHTMLInput!]
secondary: [LocalizedRichHTMLInput!]
extra: [BatchProductDescriptionExtraInput!]
}

Fields

primary ● [LocalizedRichHTMLInput!]

Primary product text

secondary ● [LocalizedRichHTMLInput!]

Secondary product text

extra ● [BatchProductDescriptionExtraInput!]

Extra product texts: additional | special

Example

{
"primary": [
{
"language": "EN",
"value": "<p>A lightweight summer t-shirt</p>"
}
],
"secondary": [
{
"language": "EN",
"value": "<p>Made from 100% organic cotton</p>"
}
],
"extra": [
{
"type": "additional",
"value": [
{
"language": "EN",
"value": "<p>Care instructions</p>"
}
]
}
]
}