In Supabase documentation, it explains this as how you would "join" tables to get data
const { data, error } = await Supabase
.from('countries')
.select(`
name,
cities (
name
)
`)
But how do I know this works every time when I have not specified which columns would be joined? Is there a way to specify which column to perform join on?