Is there a way to add extra records through a data mapper? So I have a CSV file coming through and need to add some extra static records in every time it runs (seeds).
I won’t be using workflow so can’t do a retrieve items, so need to do this within the mapper
Yes, you can use the record.copies property on any record to duplicate it, and then you can use the record.setCopy() method to set values for any or all fields on any of the record copies.