Express Meal Track Entries
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
query {
expressMealTracks(
start: "2025-06-01",
end: "2025-06-10"
) {
edges {
node {
id
mealTime
calories
proteins
carbs
fats
datetime
}
}
}
}{
"data": {
"expressMealTracks": {
"edges": [
{
"node": {
"id": "RXhwcmVzc01lYWxUcmFjazo3ODM3",
"mealTime": "SNACK",
"calories": 630,
"proteins": 50,
"carbs": 66,
"fats": 23,
"datetime": "2025-06-09T16:07:21Z"
}
}
]
}
}
}