Skip to main content

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!

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.


Reply