Nacho Ruiz Martin
04/30/2024, 1:40 PM@Serializable
private data class PubEvent(
@SerialName("pub")
val pub: Int,
@SerialName("event")
val event: Int,
)
supabase.realtime.channel("${pubId}_events")
.postgresListDataFlow(
table = "pub_event",
primaryKey = PubEvent::event,
filter = FilterOperation("pub", FilterOperator.EQ, pubId)
)
What could be the reason for that?
I went to Supabase dashboard, connected to a channel and listen to events with the same filtering and it’s emitting as expected.Nacho Ruiz Martin
04/30/2024, 2:03 PMchannel.subscribe()
😞 .Jan
04/30/2024, 5:56 PMNacho Ruiz Martin
04/30/2024, 6:25 PM