Hello i have problem with use whereEqualTo for a list of possible values
My goal is make something like this
query
.orderBy("dateTime", Query.Direction.DESCENDING)
.limit(LOAD_COUNT)
.whereEqualTo("tittle","new advert for search2")
.whereEqualTo("tittle","new advert for search1")
.get()
or
query
.orderBy("dateTime", Query.Direction.DESCENDING)
.limit(LOAD_COUNT)
.whereEqualTo("tittle","new advert for search2" || "new advert for search1")
.get()
structure: enter image description here screenshot enter image description here with datetime enter image description here
or merge few querying to one to get one list with results
but i could not find any solutions for resolving this problem
I hope that someone know best way for resolve this issue