I’ve been digging into fuzzy-search and realised it may not be ideal in Bubble because it pulls the entire data source to the client before filtering, which burns a lot of WUs.
Use case
Users need to find items even if they type the title in Swedish or English. Each record therefore has two text fields: title_sv and title_en.
What I’ve read
The following posts were super helpful, but I’m still unsure how to handle bilingual searches neatly:
Naïve idea (probably not optimal)
Search on title_sv. If the repeating group returns 0 results, run the same query on title_en. it feels clunky and doubles the calls and im not even sure if its possible?
Question
Is there a smarter way to let users search in either language without blowing up WU usage?