I am trying to query the firestore database to find documents with attribute string that "contains" the given keyword.
For instance, if I have the keyword an, I want documents with attribute value such as "and", "ande", "any" to show up.
However, the Firestore doc only states that there's only equalTo and greater and less than operations.
How can I accomplish this feat?