How run event handlers in order?

Hi any option to run event handler on sucess in order?

lets say i want to first

  1. run query1
  2. run query2
  3. save to a temp state some vars of those query 1 and query 2

Use Run Script and then in the script area write
await query1.trigger();
await query2.trigger();
yourTempStateName.setValue(query1.data). // This will depend on how your tempstate is constructed because you could use yourTempStateName.setIn();
Screenshot 2023-05-24 at 1.54.14 PM

You can also chain the event handlers together meaning run one and then when that is done, run the next query and so on

1 Like

awesome, thank you so much

how will be the chained one?

Using the Success Event Handler in query1 add a new event to Control query and select query 2 and so on

1 Like