In Supabase Realtime, I aim to implement a filter that depends on either of two fields. Is it possible to use an OR condition in the PostgresChangeFilter for the following scenarios?
PostgresChangeFilter(
type: PostgresChangeFilterType.eq,
column: 'saved_by',
value: broadcasterId,
)
PostgresChangeFilter(
type: PostgresChangeFilterType.eq,
column: 'updated_by',
value: broadcasterId,
)
There is an in filter that you can use.