Weight Tracker
Required Arguments
Available Fields
Example
query { weightTracker (startDate:"2023-03-11" endDate:"2023-03-14" source: SUGGESTIC){
entries{
date
createdAt
value
source
}
tendency{
type
difference
}
}}{
"data": {
"createWeightEntry": {
{
"data": {
"weightTracker": {
"entries": [
{
"date": "2023-03-11",
"createdAt": "2024-02-06T19:47:26Z",
"value": 99.15,
"source": "SUGGESTIC"
},
{
"date": "2023-03-12",
"createdAt": "2024-02-06T19:47:37Z",
"value": 100,
"source": "SUGGESTIC"
},
{
"date": "2023-03-13",
"createdAt": "2024-02-06T19:47:47Z",
"value": 88,
"source": "SUGGESTIC"
},
{
"date": "2023-03-14",
"createdAt": "2024-02-06T19:48:01Z",
"value": 87.2,
"source": "SUGGESTIC"
}
],
"tendency": {
"type": "DOWN",
"difference": -11.950000000000003
}
}
}
}Last updated
Was this helpful?