Can someone please tell me how to set up a double recursive workflow in bubble.io? How do I set up a double recursive workflow in bubble.io? The user type has a list field. The list field is the search keywords. We want to search all keywords for all users.
What do you mean by âdouble recursive workflowâ?
What are you trying to do exactly?
Iâm not sure I understand. unless youâre creating a thing from each search word for each user, for example I donât see why itâs a recursive workflow, and it wouldnât be double, the list would be do a search for users: each users search words.
what is it youâre trying to do?
The site offers a searchable service for bidding information.
Each registered user also registers keywords to search for. In the future, we would like to add a service whereby the service provider can search for bids using the userâs search keywords and provide the search results in a CSV file.
Therefore, the service provider needs to search for all users on their behalf.
The user type data contains a list field for the keywords.
still, I think you can do that without any recursive workflows. You need a RG of type bids, where that bidâs userâs keywords contain the searched for keyword. You need to make sure that usersâ keywords are searchable in the privacy rules for this to work.
Thank you for your kind response.
Let me explain what I would like to do again.
The site offers a searchable service for bidding information.
Each registered user also registers keywords to search for. In the future, we would like to add a service whereby the service provider can search for bids using the userâs search keywords and provide the search results in a CSV file.
Therefore, the service provider needs to search for all users on our behalf.
The user type data contains a list field for keywords.
Is it possible to search for all keywords for all users?
We are currently using Algolia for the search.
(1) Select users â (2) Search by registered keywords â (3) Add results to RG (repeat (2) and (3) until the end of registered keywords) â (4) Output to CSV file â Return to (1) and repeat until all users are done.
2024ćčŽ9æ10æ„(ç«) 19:59 Hanan via Bubble Forum <notifications@forum.bubble.io>:
no problem. so your RG is a list of users, not bids?
yes of course you can. So in Algolia you have a list of users, the âsearchable keywordsâ needs to be a list of texts for each user, and you need to add it as a searchable attribute in configuration. Then just set up the frontend in Bubble; add the algolia element, set up the input field where the service provider enters the word to search for and the RG where the list of users will be displayed, and thatâs about it.
donât think of it as if youâre writing code, Algolia is already doing that for you.
I hope I didnât misunderstand the question.
Thank you for your kind response.
The search in Algolia is now in full production. We are planning to replace it with a service that searches on behalf of users behind the scenes.
This function will automatically search using all usersâ search terms and output the results to a file for each user.