You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have some csv files without a defined id column, nor a column which values are unique itself.
E.g. a csv with a year and month column.
Would it be an idea to provide a (new) CSVLoaderOptions option to automatically generate an id?
Or to have a Function option to generate an id for each row?
E.g. (row) => `${year}-${month}`
The text was updated successfully, but these errors were encountered:
Hi,
First of all thank you for this project.
I have some csv files without a defined
id
column, nor a column which values are unique itself.E.g. a csv with a
year
andmonth
column.Would it be an idea to provide a (new)
CSVLoaderOptions
option to automatically generate an id?Or to have a
Function
option to generate an id for each row?E.g.
(row) => `${year}-${month}`
The text was updated successfully, but these errors were encountered: