Add Supplement
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
mutation($input: CreateSupplementInput!) {
createSupplement(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": {
"createSupplement": {
"success": true,
"message": "Supplement created",
"supplement": {
"name": "SuppTest",
"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": "U3VwcGxlbWVudERpcmVjdGlvbjoxNzUzMDM=",
"quantity": 2,
"timeOfDay": "WITH_BREAKFAST"
}
]
}
}
}
}{
"input": {
"name": "SuppTest",
"brand": "ACME",
"category": "Generic",
"servingName": "Capsule",
"mainImage": "https://static.wikia.nocookie.net/warner-bros-entertainment/images/6/6e/Acme-corp.png/revision/latest?cb=20180619032346",
"directionsOfUse": [{
"timeOfDay": "WITH_BREAKFAST",
"quantity": 2
}]
}
}