I have a very simple app with chat function custom implemented. But I have noticed that after writing few messages, my reads are increasing in hudreds.
At the page load, I am doing query request will full list of documents with chats and later on, when I write new message, it just gets updated automatically.
Is there a way to understand or see what exact read requests are going to the database?
I have a AllChatPage, where I just query all chats for current user and I have One2OneChatPage where I just call the chat_messages for current user and the user I am chatting to.