Create supplement plan for user
Use createSupplementPlan
to add new supplement plan to an user.
Required Arguments
Example
mutation {
createSupplementPlan (
input:{
name:"Suggestic Plan"
isActive: true
visibility: true
coach:"Q29hY2g6NTA0Mw=="
startDate:"2024-06-01"
nutrition:"Placeholder Text"
resources:"Placeholder Text"
overview:"Placeholder Text"
exercise:"Placeholder Text"
protocols:{
protocolId:"UHJvdG9jb2w6MzA1NTc0"
isActive:true
directionsOfUse:{
quantity:10
timeOfDay:AT_WAKING
}
wednesday:true
}
supplements:[{
supplementId:"U3VwcGxlbWVudDoxZjNhZjAzYi01ZWQzLTQ0ZTUtYTE4MS03NTAwOWVlNmI1NjE="
length:30
directionsOfUse:{
quantity:10
timeOfDay:WITH_BREAKFAST
}
saturday:true
},{
supplementId:"U3VwcGxlbWVudDpjYzI1YzZkNC0wNzYwLTRmNzItYTU4MS0xYmJhZmViYWY3Zjg="
length:10
directionsOfUse:{
quantity:5
timeOfDay:WITH_DINNER
}
monday: true
wednesday: true
friday: true
}],
}
){
success
message
}
}
{
"data": {
"createSupplementPlan": {
"success": true,
"message": "Supplement plan created"
}
}
}
Last updated