How to get data from other tables via foreign keys (Supabase / Chakra UI tables)
Hello, I have a question regarding the useTable hook, how do I set query options so I can do operations like these for example:
select movies.title, categories.name
from movies
join categories on movies.category_id = categories.id;