Hi everyone,
I’m working with a Xano API in Toddle that returns a list of items with fields like close_date. I want to add a new field (e.g., relative_time) to each item based on the close_date before saving the results to a variable (Results)
I have a custom action (ConvertToRelativeTime) that should process the timestamps.
* But when I use Set: results, it only saves the transformed items, not the full response.
Here’s an example of one item:
{
"close_date": 1748497620000
}
I want it to become:
{
"close_date": 1748497620000,
"relative_time": "3 hours ago"
}
Any tips on how to do this efficiently in Toddle? Thanks!