Set Value for Objects

Database Query "users"
[
    {
        id: 1,
        name: "George"
    }
]

Set Value users[0].name = "Teodor"

If you need an immediate solution. You can do this with a custom module or formatter. So you’d be able to use it like this:

query.addKeyToObject('name', 'Teodor')

Or in the UI:

2 Likes

Btw with the new “group” server action you can create objects serverside. Just make sure you give it a name.

So by just adding actions like group and setValue you can create any arbitrary objects structures

1 Like

Wow! Group? Is there any doc for this, @George?

Note that this is available for NodeJS only.