Create my Branded Food
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
mutation createMyBrandedFoods {
createMyBrandedFoods(
input: {
brandOwner: "Pil"
servingSizeUnit: "ml"
servingSize: 240
gtinUpc: "688267008689"
householdServingFulltext: "1 cup"
name: "Milk"
nutrients: [
{ amount: 150, unit: "MG", nutrient: POTASSIUM_K }
{ amount: 120, unit: "MG", nutrient: CALCIUM_CA }
]
}
) {
success
message
}
}
{
"data": {
"createMyBrandedFoods": {
"success": true,
"message": "Branded food saved"
}
}
}