RichCorbs
09/04/2021, 10:32 PMNOTIFY pgrst, 'reload schema'
to reload the schema cache.
Any other ideas?RichCorbs
09/04/2021, 10:35 PMtable!foreign_key_column
notation.RichCorbs
09/04/2021, 10:49 PM*
and do not specify the columns I want.RichCorbs
09/04/2021, 10:56 PM// FAILS
supabase
.from('table1')
.select(id,foreign_table_id, foreign_tables(*))
// WORKS
supabase
.from('table1')
.select(*, foreign_tables(*))
// WORKS
supabase
.from('table1')
.select(id, foreign_tables(*), foreign_table_id)