is it possible to sort a db query using the supabase api on a computed value?
something like:
await supabase
.from('drives')
.select('distance / time AS speed')
.order('speed', { ascending: false })
(yes i know i could call a custom postgres function)