Is it possible to get all my queries and trigger them at once?

Hi, I have lots of queries in one app (78 single queries)
so, i want to access them at once via list or iterator

Is it possible to get all my queries and trigger them at once?

Hi @Yesung-Han,

Are you looking to trigger them one by one? Just noting for performance reasons, it's not recommended to trigger this many queries at the same time.

We don't currently have a native way to iterate through or return all of the query names programmatically :disappointed: but I made a feature request for this internally

For the time being, I'd recommend using event handlers to trigger queries. For example, you could trigger a subset of them on button click, or you could trigger one query on success of another and continue down the chain