Functions

Link copied to clipboard
abstract fun fetchAll(): Uni<List<T>>

This query returns several results as Uni>

Link copied to clipboard
abstract fun fetchFirst(): Uni<T>

This query returns the first result as Uni, or an empty Uni if no result

Link copied to clipboard
abstract fun fetchOne(): Uni<T>

This query returns one result as Uni, or an empty Uni if no result

Link copied to clipboard
abstract infix fun limit(limit: Long): MutinySqlClientSelect.LimitOffset<T>
Link copied to clipboard
abstract infix fun offset(offset: Long): MutinySqlClientSelect.LimitOffset<T>