Meal Plan Template Search
Last updated
Was this helpful?
Was this helpful?
pageInfo{
hasNextPage
hasPreviousPage
startCursor
endCursor
}query {
mealPlanTemplates {
edges {
node {
id
description
createdAt
coachId
isPublic
days {
day
meals {
recipe {
name
}
calories
numOfServings
}
}
}
}
}
}
{
"data": {
"mealPlanTemplates": {
"edges": [
{
"node": {
"id": "TWVhbFBsYW5UZW1wbGF0ZTphY2FkYWY4Yy1jMWY5LTQyN2MtOGZlOS0zNjgyZjIxYThhYjE=",
"description": "The very first",
"createdAt": "2022-01-14T15:13:01.255979+00:00",
"coachId": null,
"isPublic": false,
"days": [
{
"day": 1,
"meals": [
{
"recipe": {
"name": "Caprese-Style Salad With Chicken"
},
"calories": 414.554124274375,
"numOfServings": 2
}
]
}
]
}
}
]
}
}
}