All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.io.github.jan.supabase.postgrest.query.Order.kt Maven / Gradle / Ivy

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");
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy