How to eq() a table that is not a direct join?
I have 3 tables.
I want to query every
How do I join
Here is a code example of my (failed) attempt:
Does anyone know?
battle, teams and user. They are linked to each other in this order, but battle does not have a direct relation with user.I want to query every
user that has at least one battle that is public. For this I have battle.public IS TRUE. How do I join
user and battle with supabase-js?Here is a code example of my (failed) attempt:
Does anyone know?