Following is one of the examples in Cloud Firestore list query
citiesRef.where("state", ">=", "CA").where("state", "<=", "IN")
What does it mean?
Is this the way I can do a query for searching substrings. For example, I have a collection of users and all my user documents have first_name and last_name. Now as a user I am trying to search others by typing a portion of the name and searching. I should be able to write a query to get all user who's name contains that string. How do I do that in Firestore?