Skip to main content

Using a Script to link multiple records in one field

  • August 11, 2021
  • 1 reply
  • 10 views

Forum|alt.badge.img+1

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

Kamille_Parks11
Forum|alt.badge.img+27

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.