|
|
open suspend fun find(): Type? |
|
|
open fun limit(limit: Int): Query<Type> |
|
|
open fun order(field: KProperty<Any>): Query<Type>
open fun order(field: String): Query<Type> |
|
|
open suspend fun query(): QueryResult<Type> |
|
|
open fun skip(skip: Int): Query<Type> |
|
|
open fun <AllowedValueType> with(field: KProperty<Any?>, operation: Operation<AllowedValueType>, value: AllowedValueType): Query<Type>
open fun <AllowedValueType> with(field: String, operation: Operation<AllowedValueType>, value: AllowedValueType): Query<Type> |