Hello everyone!
How could I mimic an action of copying-pasting string value into the linked field with an automation script? Here is what I mean:

Here I can easily copy the value of a string field “task 4” and paste it into linked field “Linked Tasks”. Actually, I paste into this field the property “name” of the object

So, how could I reference this property in a script?
await table.updateRecordAsync(rec, {
"Linked Tasks": [{ name: rec.getCellValueAsString("Manually Entered Tasks") }]
})
This assignment doesn’t work, but I stuck finding correct way. Any suggestion is much appreciated.

