Update User Goal
Required Arguments
Available Fields
Example
mutation {
updateUserTracker(input: {
id: "VXNlclRyYWNrZXI6MQ=="
goal: 18000
source: SUGGESTIC
}) {
success
message
tracker {
id
tracker
goal
source
}
}
}{
"data": {
"updateUserTracker": {
"success": true,
"message": "steps_tracker successfully updated",
"tracker": {
"id": "VXNlclRyYWNrZXI6MQ==",
"tracker": "STEPS_TRACKER",
"goal": 18000,
"source": "SUGGESTIC"
}
}
}
}Last updated
Was this helpful?