Swift: Order the results

Order the query result by column.

Examples

With `select()`

try await supabase.database
  .from("instruments")
  .select("id, name")
  .order("id", ascending: false)
  .execute()

On a foreign table

  try await supabase.database
    .from("sections")
    .select(
      """
        name,
        instruments (
          name
        )
      """
    )
    .order("name", ascending: false, foreignTable: "instruments")
    .execute()