commonMain.io.github.jan.supabase.postgrest.request.SelectRequest.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
package io.github.jan.supabase.postgrest.request
import io.github.jan.supabase.postgrest.query.Count
import io.ktor.http.Headers
import io.ktor.http.HttpMethod
@PublishedApi
internal class SelectRequest(
val head: Boolean = false,
val count: Count? = null,
override val urlParams: Map,
override val schema: String,
override val headers: Headers = Headers.Empty,
): PostgrestRequest {
override val method = if (head) HttpMethod.Head else HttpMethod.Get
override val prefer = if (count != null) listOf("count=${count.identifier}") else listOf()
}