Radek Rozkiewicz
 ยท Product Designer

Supabase Steam Query Problems

Database & APIs

Hi all,

I've got a simple chats page, chat list on the left, when a user selects a chat, the chat messages for that chat are shown on the right.

Two problems arose since I updated my chats list + chat messages to a Stream query, instead of a Future single time query

1. Caching error
When a user is viewing property A's chats (the propertyId app state is the unique cache key) and then navigates to property B's chats, the user still sees the list for property A's chats, even though the propertyId app state has been updated to property B.
**This was working when the query was a single time query, instead of a stream


2. Updating chat messages Query not working
When a user selects a chat in the left hand side, the activeChatId app state updates, which should update the messages seen on the right. This worked as a single time query as it would trigger "Refresh Database Request."
Now as a stream, this isn't an option, and the app state update does not trigger the chatMessages list to requery. So it just stays blank, even though the activeChat app state is updating correctly.


Any idea what's going on with these two problems and how to fix it?

What have you tried so far?

Problem 1: Removing caches work, but this slows down the app and makes it more resource intensive

Problem 2: Upon selecting a chat, re-navigating to the page works and the data displays correctly, but the screen flashes which is rubbish UX.

Did you check FlutterFlow's Documentation for this topic?
Yes
2
4 replies