startAt



fun startAt(vararg fieldValues: Any?): Query(source)

Deprecated

Deprecated. Use `startAtFieldValues` instead

Replace with

startAtFieldValues { fieldValues.forEach { add(it) } }

fun startAt(vararg fieldValues: Any?, buildSettings: EncodeSettings.Builder.() -> Unit): Query(source)

Deprecated

Deprecated. Use `startAtFieldValues` instead

Replace with

startAtFieldValues {
apply(buildSettings)
fieldValues.forEach { add(it) }
}