I have a contact list:
[
"abc"
"def"
]
and chat records that have the following format
from :"dpasha52"
to: "jbabu"
text: "some message"
timestamp :1 September 2021 at 17:57:02 UTC+5:30
I need to query firebase collection such that
===========>not in takes contact list
this.angf.collection('Chats', ref => ref.where('from',not in, ["","",""]).where('to','==',this.userinfo.name))
.valueChanges();
the only problem is not in only allows 10 entries.
is there any way to include more than 10 entries?