Say I have a table loading in via query1. For each item, I want to trigger query2 and display the results of query2 in each cell of the table. I know I can map items from query2 to query1, but not sure about triggering a query multiple times.
Is this possible? I don’t see any tutorials for it
I would likely do this with a JS query, a var, and a transformer
JS query runs
for loop for all of query2 given each item of query1
for each loop, I would set the variable to append the result of query2
in the transformer I would merge query1 and query2 and have the table reference the transformer