Please Help!!!!
Im using firebase admin, In my case I'm searching for a value in multiple fields, can't figure out how to draft a query for the same.
Expected:
db.collection("user")
.where("name, comments", "in", "Jack" )
.get()
(or)
db.collection("user")
.where("name, comments", "==", "Jack" )
.get()
But, unfortunately i couldnt find a solution for executing this scenario.