Assuming I have a list of data I would like to store with Firestore database, and search it later.
What would be the best way to store the data and query it to get the best performance?
My data is a list of names (containing a lot of names).
["Bob", "Rob", Robert, Robe, ...]
Assuming I search for names containing "obe" I should get the response with the names "Robert" and "Robe".
Note that I want to get the same result for the term "ObE" also.