I want to specify a list as the values of a property in csv file so that it can be loaded through load_csv as list.
Currently, I am specifying it as string and using split to add it in to list as below. Is there a better way?
WITH n, split(n.lab, \",\") as labels limit {limit}
call apoc.create.addLabels(id(n), labels)
Is there a way to avoid using split by reading it as list while doing load_csv. what's the syntax of list in csv file?