Nested ordering not working in V2
So it seems like I should be able to order by nested values on the supabase js sdk according to this:
https://github.com/supabase/supabase/discussions/229
tags
J
https://github.com/supabase/supabase/discussions/229
tags
- pid (fk to posts.id)
- ...
- created_at
- ...
.order() line, everything works fine.J
GitHub
In an order expression is there a way to order the parent objects and the nested/foreign/child objects? Like this: supabase.from("parents").select(", children()&quo...