[#2309] added query by filter record helpers

This commit is contained in:
Gani Georgiev
2023-05-31 11:47:16 +03:00
parent 0fb92720f8
commit ddca49ba16
5 changed files with 285 additions and 5 deletions
+6
View File
@@ -25,6 +25,12 @@
- Added `subscriptions.Client.Unset()` helper to remove a single cached item from the client store.
- Added query by filter record `Dao` helpers:
```
app.Dao().FindRecordsByFilter("posts", "title ~ 'lorem ipsum' && visible = true", "-created", 10)
app.Dao().FindFirstRecordByFilter("posts", "slug='test' && active=true")
```
## v0.16.4-WIP