how can make a query with or
Example:
select * from people where eyes ="Blue" or eyes ="Green"
I use Firestore and can make when "whereEqualTo"
but I need that.
My code in Android now is:
db.collection("people")
.whereEqualTo("eyes","Blue");