Previously I could run queries like:
supabase.table("MyTable")
.select("id, My Connected Table(other_id)")
.execute()
Now these queries fail, I have to wrap the tables in double quotes:
supabase.table("MyTable")
.select('id, "My Connected Table"(other_id)')
.execute()
There was nothing about this in the release notes, are other people seeing this issue?