Last updated
Was this helpful?
Was this helpful?
mutation($input: UpdateSupplementInput!) {
updateSupplement(input: $input) {
success message
supplement {
name category mainImage brand servingName description
directionsOfUseText sizeCount externalId sku storeId
shopifyVariantId shopifyParentId instructions ingredients
supplementFacts images
directionsOfUse { id quantity timeOfDay }
}
}
}{
"data": {
"updateSupplement": {
"success": true,
"message": "Supplement updated",
"supplement": {
"name": "Supp G Test",
"category": "Generic",
"mainImage": "https://static.wikia.nocookie.net/warner-bros-entertainment/images/6/6e/Acme-corp.png/revision/latest?cb=20180619032346",
"brand": "ACME",
"servingName": "Capsule",
"description": null,
"directionsOfUseText": null,
"sizeCount": 0,
"externalId": null,
"sku": null,
"storeId": null,
"shopifyVariantId": null,
"shopifyParentId": null,
"instructions": null,
"ingredients": null,
"supplementFacts": null,
"images": [],
"directionsOfUse": [
{
"id": "U3VwcGxlbWVudERpcmVjdGlvbjoxNzUzMzQ=",
"quantity": 1,
"timeOfDay": "WITH_BREAKFAST"
}
]
}
}
}
}{
"input": {
"id": "U3VwcGxlbWVudDpkMzAxNmM4Ni1kNGVmLTRiYjAtODk0OS0xYWNiZmFmNzY5YjE=",
"name": "Supp G Test",
"directionsOfUse": [{
"timeOfDay": "WITH_BREAKFAST",
"quantity": 1
}]
}
}