Aug 11, 2021 01:06 PM
Hey! Has anyone successfully created a script that can use a dynamic array to link multiple records together? I can hard code the values but using an array is alluding me.
Thanks for the help!
Aug 11, 2021 03:07 PM
To edit a link field you have to supply it an array of objects that looks like:
[{id: "recXXXX1"}, {id: "recXXXX2"}, {id: "recXXXX3"}]
You could generate that by doing .map(x => {return {id: x.id}}) on an array of records.
.map(x => {return {id: x.id}})