Watching some tutorials, I was able to successfully return (using an addon) a boolean value, true or false, based on whether the item is saved/liked by the authenticated user or not. But on the front-end no code tool I am using, Bravo Studio, I need to accompany this with a string value; for example:
if _likes: false then also return mystring: default
if _likes: true then also return mystring: active
Basically, I want to be able to return another addon (?) value, such as 'mystring' right after the response for '_likes' as seen above and set the value for this string to either default or active based on the value of the _likes boolean.
Can you please help guide me on how I can accomplish this? Thanks