mutation productCreate ($attributes: ProductAttributes!) {
productCreate (attributes: $attributes) {
errors
product {
code
description
everythingInPlus
id
internalNotes
name
plansToDisplay
platformId
productCategoryId
showProductNameOnLineItem
}
}
}
{
"attributes": {
"name": "",
"code": "",
"platformId": "456123",
"everythingInPlus": true,
"description": "",
"internalNotes": "",
"productCategoryId": "456123",
"showProductNameOnLineItem": true,
"plansToDisplay": 123
}
}