Querying foreign tables w SDK
Lower importance question, but wondering if I can get a cleaner implementation. Per https://supabase.com/docs/reference/javascript/select#query-foreign-tables I am able to successfully access data across a join table by doing something like this as an example:
However, the data returned is:
Is there a way to just return the data directly without the join table nesting? Like:
etc... I know I can do the transformation on the frontend, but seems cleaner if there is just a better way of requesting the data from the SDK
However, the data returned is:
Is there a way to just return the data directly without the join table nesting? Like:
etc... I know I can do the transformation on the frontend, but seems cleaner if there is just a better way of requesting the data from the SDK
Performs vertical filtering with SELECT.