After playing around with appgyver i realized that, the current.data.items was not showing up by itself. I entered the formula with an if function and it worked, removed the if function and its back to [Object Object] with no images.
Based on my observation the current fields requires some other object in place of it’s initial value for it to work e.g below.
For Text:
IF(IS_EMPTY(current.fields.text),“example text”,current.fields.text)
For Images/URLS:
IF(IS_EMPTY(current.fields.ImageURL),“http://example.com”,current.fields.ImageURL)
For Colors:
IF(IS_EMPTY(current.fields.ImageURL),"#000000",current.fields.ImageURL)
so forth. Hope this helps someone…!!!