Help

Re: Using a Script to link multiple records in one field

488 0
cancel
Showing results for 
Search instead for 
Did you mean: 
Matthew_Delfino
4 - Data Explorer
4 - Data Explorer

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!

1 Reply 1

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.