How can I perform a Firestore query that searches for documents with partial matches or multiple fields, instead of exact matches?
I'm using Vue2, this is my current syntax:
query = query.where("objectID", "==", this.state.docs.keyword)
I'm trying to query the result with keyword: "TX-200_FA" by fields ObjectID, CustomerName and SellerName.
The output I received only contains exact matches for the field ObjectID, which was not my intention. If I enter the keywords "200" or "TX", I want the results to be displayed as well.