I assumed that was the likely answer. I was just hoping there was a way to keep it the same as the source data as converting to a list is going to be a large process.

i already use relational data by having genres, actors etc in their own datatypes, these are fairly easy to process as its one field and just split the values and return the corresponding IDs from their datatype. this however is 30+ fields to combine, how would you approach this without create 30+ “create a thing”'s? seems like you’d have to do:

create a thing > networkList add … > only when channel 1 is yes
create a thing > networkList add … > only when channel 2 is yes
create a thing > networkList add … > only when channel 3 is yes

and so on.

i’ll likely create a relational datatype for networks but combining them into a single list is still the hard bit