Hey! There is a new beta available: <2.4.0-beta-1>...
# supabase-kt
j
Hey! There is a new beta available: 2.4.0-beta-1 which includes a bunch of improvements and fixes including a new and easy way to listen for DB changes without having to worry about realtime channels:
Copy code
val productFlow: Flow<List<Product>> = supabase.from("products").selectAsFlow(Product::id, filter = FilterOperation("id", <http://FilterOperator.GT|FilterOperator.GT>, 2)).collect {
    println(it)
}
Feel free to try it out and let me know if there are any issues!
kodee happy 4
🐕 1
The version is now out! The docs have also been updated accordingly.