TypeError: Cannot read property 'offset' of undefined
See original GitHub issueIt seems that if some cells are empty, the select()
method fails with the following error:
TypeError: Cannot read property 'offset' of undefined
at /node_modules/airtable/lib/query.js:109:28
at /node_modules/airtable/lib/run_action.js:70:17
This prevents all the other records to be read, so it is a pretty impacting issue. The library should just keep the empty value as an empty string or null or undefined. I.e. anything that does not crash.
Issue Analytics
- State:
- Created 3 years ago
- Reactions:10
- Comments:21
Top Results From Across the Web
Uncaught TypeError: Cannot read property 'offset' of undefined
I am getting Uncaught TypeError: Cannot read property 'offset' of undefined. Before that i was getting same exception for 'top' from same ...
Read more >Cannot read property 'offset' of undefined - Airtable Community
Hi, I am trying to load all rows of a base. The code I use is: const airbase = airtable.base('XXXXXXXX').table('someTable') await.
Read more >TypeError: Cannot read property 'offset' of undefined - jQWidgets
I'm getting the error TypeError: Cannot read property 'offset' of undefined but I don't know why…. My JSON is valid and looks like...
Read more >TypeError: Cannot read property 'top' of Undefined in JS
To resolve the "Cannot read property 'top' of undefined" error, make sure that the DOM element you're accessing the top property on exists....
Read more >Uncaught TypeError: Cannot read property 'offset' of undefined
Uncaught TypeError: Cannot read property 'offset' of undefined ; = new Vector3 ; follow · offset. ; follow · offset. ; follow ·...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I’ve seen this recently. It’s probably due to an error inside of the
eachPage
function. Try wrapping that into a try/catch :Hello! You guys! This happens because the page tries to fetch the next nonexistent page, fix by: