I am looking to use the iterator to submit rows to an airtable database. I am sure this is a simple problem with a simple solution, but the array documentation seems to be lacking a little in regards to proper formatting examples.
Here is an example Array:
[[Food: Orange, Calories: 100], [Food: Apple, Calories: 200],[Food: Pizza, Calories: 300]]
I would like each item to be submitted separately into the DB that is why I am using the iterator. What would be the best way to achieve this? Is the iterator the correct module?