Replies: 1 comment 8 replies
-
Correct, currently you cannot filter. Could add a The challenge with that is it will filter the initially fetched data, but not the real-time updates since Supabase doesn't provide a method for filtering the events. Right now, I recommend filtering client-side after data is fetched or compose your own hook with |
Beta Was this translation helpful? Give feedback.
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there a way to filter the records and show only a fraction of them using
useRealtime
hookScenario:
I've got tables
groups
anditems
where each item belongs to a single groupEach group gets their own url and want to show previous records and update as new records are inserted in the
items
table in the given group.The current behavior is that I get all
items
from allgroups
in the responseBeta Was this translation helpful? Give feedback.
All reactions