Getting started
Column
Type
val criteria = criteria {
filter("author", "Svetlana Isakova", FilterOperator.EQUALS)
}val criteria = criteria {
// ...
orderBy("release_date", Order.DESC)
}val fieldMap = mapOf(
// this will indicate the field author_name points to author field
"author_name" to "author"
)
val criteria = criteria {
filter("author_name", "Svetlana Isakova", FilterOperator.EQUALS)
}Next steps
Last updated