Can't create keyed array in Server Action

I need to get an indexed array like
[
‘id_amo’ : {
‘name’ : ‘Name’
}
]
from Server Connect. I’m trying to use the Set Array List Index Properties element but it doesn’t work.
The element is not added to the array.
Perhaps this is not the right way?


Keyed arrays do not exist, the only language I know supports that is PHP. You probably want to create an Object or Map which are collections of key/value pairs.

1 Like