How do I filter by multiple options?

Would be possible to filter by multiple options like:
const players$ = supabase
            .channel(`public:user:game_id=eq.${gameId}`)
            .on(
                "postgres_changes",
                {
                    event: "*",
                    schema: "public",
                    table: "user",
                    filter: `game_id=eq.${gameId} OR prev_game_id=eq.${gameId}`,
                },
                (payload) => { ... }

basically the option im looking for is game_id=eq.${gameId} OR prev_game_id=eq.${gameId}
Was this page helpful?