From Scratch
Available Arguments
Examples
Create a meal plan template from scratch
mutation {
createMealPlanTemplate(
name: "New meal plan template"
description: "The very first"
fromScratch: {
days: [
{
meals: [
{
recipeId: "UmVjaXBlOmFmMDkzMjQ0LWZkZTMtNGE3Yy1iMTA4LWUxODExNTBkNmNiZQ=="
mealType: BREAKFAST
servings: 2
}
]
}
]
}
) {
message
success
}
}Create a 2-day meal plan
Last updated
Was this helpful?