I have a list of objects that is being repeated on a page1. When I tap on a specific item I would like to see the drilldown for that item. I am not able to do this because my setup is different. My Get rest method is returning a list.
Here is my output for “Get” method.
[
{
“Name”: “Haag”,
“created”: 1605207283000,
“ownerId”: null,
“updated”: null,
“District”: “Zuid-Holland”,
“___class”: “City”,
“objectId”: “7”,
“Population”: 440900,
“___jsonclass”: “City”
}
]
I would like to pass “objectId” value “7” to my detail page variable. How can I map this.
I tried the following map: STRING(current.propName[0].objectId)
I do see the value “7” displayed in “Example results” section, but it is not returning this value.
If i use static text to test it using STRING(7), the drilldown works.
How do I get the value of the objectId, which is “7” from the component? please help.
Thanks.