Hey,
When we have more than 1000 entries, Do a search for things
is way faster than List of things
when having a RG (repeating group) or something being displayed on a user’s device.
But what happens when I need to do a recurring backend workflow, does Do a search for things
or List of things
are different? Since it isn’t happening on a user’s device.
For example:
-
A user clicks a button that schedules an API workflow that is a recurring workflow with 1 parameter that is a list of things. The literal expresion for scheduling the API workflow is better with
Do a search for things
than doing aList of things
, right? -
Inside de Backend recurring workflow, when scheduling itself, is there a difference between scheduling itself with a
Do a search for things
, or scheduling itself with aList of things
? Since again, this is happening on the server and not on a user’s device.
Thanks in advance