All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.maryk.test.requests.scanUpdates.kt Maven / Gradle / Ivy

Go to download

Maryk is a Kotlin Multiplatform library which helps you to store, query and send data in a structured way over multiple platforms. The data store stores any value with a version, so it is possible to request only the changed data or live listen for updates.

The newest version!
package maryk.test.requests

import maryk.core.models.graph
import maryk.core.models.key
import maryk.core.query.filters.Exists
import maryk.core.query.orders.descending
import maryk.core.query.requests.scanUpdates
import maryk.test.models.SimpleMarykModel

private val key1 = SimpleMarykModel.key("Zk6m4QpZQegUg5s13JVYlQ")

val scanUpdatesRequest = SimpleMarykModel.scanUpdates()

val scanUpdatesMaxRequest = SimpleMarykModel.run {
    scanUpdates(
        startKey = key1,
        where = Exists(invoke { value::ref }),
        order = this { value::ref }.descending(),
        limit = 300u,
        includeStart = false,
        toVersion = 2345uL,
        fromVersion = 1234uL,
        maxVersions = 10u,
        select = graph { listOf(value) },
        orderedKeys = listOf(
            SimpleMarykModel.key("dR9gVdRcSPw2molM1AiOng"),
            SimpleMarykModel.key("Vc4WgX_mQHYCSEoLtfLSUQ")
        )
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy