Some SQL that loads before everything else #1967
Answered
by
saptarshiguha
saptarshiguha
asked this question in
Q&A
-
Is it possible to have some SQL run before everything else? I have multiple SQL queries and im adding a handy macro function to all of these since they all run async. Is there someway to run something before the others are executed? thanks much! |
Beta Was this translation helpful? Give feedback.
Answered by
saptarshiguha
Apr 11, 2025
Replies: 1 comment
-
Aha, wrap it in a Promise and the JS code blocks can |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
saptarshiguha
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Aha, wrap it in a Promise and the JS code blocks can
await
on it.