I have a schema in my Meteor collection with nested arrays like:
{
Contact: {
firstName: contact_firstName,
lastName: contact_lastName,
emails: {
email: contact_email_address,
type: contact_email_type
}
}
}
And then a CSV file like:
firstName,lastName,email
Bob,Smith,bob@smith.com
Is there a way to insert that nested email address using PapaParse?
Thanks!
I have a schema in my Meteor collection with nested arrays like:
And then a CSV file like:
Is there a way to insert that nested email address using PapaParse?
Thanks!