From ad0cefc50e699df2f4078436698c7375c4d3d25e Mon Sep 17 00:00:00 2001 From: Ioan CHIRIAC <173203+ichiriac@users.noreply.github.com> Date: Sat, 17 Jan 2026 20:38:22 +0000 Subject: [PATCH] Add example for querying with filters in models documentation --- docs/models.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/models.md b/docs/models.md index 13faf52..3bd686b 100644 --- a/docs/models.md +++ b/docs/models.md @@ -191,6 +191,7 @@ For a comprehensive guide on scopes, including parameterized scopes, caching, an ## Creating and flushing +```js // Query with filters const publishedPosts = await user.posts.where({ published: true }); ```