Is there a way to run a workflow that does a loop with actions associated?

What I’m trying to accomplish is a workflow that searches for a certain number of other users in an area. I can do this with the Google geolocation plugin normally with a repeating group, display for example the 10 closest users by distance. However, I’d also like to push out a notification to them as part of a workflow so how would I loop that function in a workflow and then send a notification to each one?

There’s a way to do this and it’s a lot like a loop, but not actually called a loop in Bubble speak.

You’ll want to run a workflow on a list, which essentially runs the same workflow for each item in the list. This way, you could, for example, have it email each person on that list.

3 Likes

Thank you for the help. Please expand on how to do this. I’m trying to something similar, and the sudo code for mine is as follows:

For each thingA in listA
create a thingB and set a field in thingB equal to ThingA
add thingB to listB
end