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!
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.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.