aggregate
Start an aggregation pipeline.
Example
class User(
val name: String,
val age: Int,
)
users.aggregate()
.match { User::age gt 18 }
.toList()
Content copied to clipboard
Start an aggregation pipeline.
class User(
val name: String,
val age: Int,
)
users.aggregate()
.match { User::age gt 18 }
.toList()