Can't get list things into server scripts in backend workflow toolbox

@dschmid00 that’s a good workaround!

I’ve updated the docs, added another example to the section params-bubble

(The cached time on the docs CDN is kinda long, to refresh the page cache: open the site, turn off network, refresh page to get error, turn on network, refresh page and should be the new one not the cached one)

I also added another workflow “list of books categories” in example app editor

var len = await properties.thinglist1.length();
var result = [];
for await (const item of properties.thinglist1) {
    // result.push(item.listProperties());
    result.push(await item.get("title_text"));
    var cat = await item.get("category_custom_category");
    // result.push(cat.listProperties());
    var catname = await cat.get("name_text");
    result.push(catname);
}
return result; // list of text

I hope this proves useful! :slight_smile:

2 Likes