Support
Help Center
Airtable Universe
Airtable Templates
Airtable Guides
Developer Documentation
Sign up for Airtable
Airtable Community
Announcements
Discussions
Ask A Question
Show & Tell
Development & APIs
Groups
Airtable AI
Airtable Enterprise Network
Marketing
Product Operations
EDUser Group
Events
Resources
Getting Started
Job Board
Product Ideas
Search
Community
Knowledge base
Dmitry_Mosquid
Users
cancel
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for
Search instead for
Did you mean:
Help
Sign In
Browse
Airtable Community
Dmitry_Mosquid - profile
Dmitry_Mosquid
4 - Data Explorer
since
Apr 11, 2021
Nov 29, 2022
User Statistics
2
Posts
0
Solutions
0
Kudos given
0
Kudos received
User Activity
Posts
Replies
Scripting: fetch breaks the app execution
Apr 11, 2021
I’m having a problem using fetch with the scripting app. My code looks like this: records.forEach(async (record) => { try { // works until here const response = await fetch(...) // never gets here either } catch (err) { // ne...
Re: Scripting: fetch breaks the app execution
Apr 12, 2021
If anyone else will encounter this issue, getting rid of forEach in favor of for of solved this issue for me