Closed GV14982 closed 4 years ago
Currently the structure of the data you pass into:
nvm about the create functions. Just leave those as is
Is structured as:
{ id: id // Only required for the update methods field1: value1, field2: value2 }
And this could cause an issue if the table has a column called id. So we should change the update and bulkUpdate methods to use the following:
{ id: id, fields: { ...fields } }
Be sure to update all relevant tests and documentation.
Currently the structure of the data you pass into:
AsyncAirtable#createAsyncAirtable#bulkCreatenvm about the create functions. Just leave those as is
Is structured as:
And this could cause an issue if the table has a column called id. So we should change the update and bulkUpdate methods to use the following:
Be sure to update all relevant tests and documentation.