how to order by multiple columns in supabase-python?
client.table("info")
.select("*")
.order("custom_ranking")
.order("view_count", desc=True)
.limit(999999)
.execute()it is sorting only by "custom_ranking" column when I am trying to sort by the specified(two) columns