commonMain.io.github.jan.supabase.postgrest.query.Order.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of postgrest-kt-jvm Show documentation
Show all versions of postgrest-kt-jvm Show documentation
Extends supabase-kt with a Postgrest Client
The newest version!
package io.github.jan.supabase.postgrest.query
/**
* Used to order the result of a query
* @param value The value to be used in the query
*/
enum class Order(val value: String) {
/**
* Order the data ascending
*/
ASCENDING("asc"),
/**
* Order the data descending
*/
DESCENDING("desc");
}