startAfter



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

Deprecated

Deprecated. Use `startAfterFieldValues` instead

Replace with

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

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

Deprecated

Deprecated. Use `startAfterFieldValues` instead

Replace with

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