diff options
| author | Brandon Wong <29965003+brandonw3612@users.noreply.github.com> | 2025-04-13 22:50:45 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-13 21:50:45 +0100 |
| commit | 95f504c0bc0b9ec0930b6c6facefc1a8ea093192 (patch) | |
| tree | 967221d7f4f5b716cc8fd3d92b5869bacf1d6089 /docs | |
| parent | 5bdb2d944a08f63772497e203f47533ffb640d82 (diff) | |
| download | karakeep-95f504c0bc0b9ec0930b6c6facefc1a8ea093192.tar.zst | |
feat: add support for filtering by bookmark age (#1228)
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/docs/14-Guides/02-search-query-language.md | 29 |
1 files changed, 15 insertions, 14 deletions
diff --git a/docs/docs/14-Guides/02-search-query-language.md b/docs/docs/14-Guides/02-search-query-language.md index b0d8ffd3..f45b7dc2 100644 --- a/docs/docs/14-Guides/02-search-query-language.md +++ b/docs/docs/14-Guides/02-search-query-language.md @@ -13,20 +13,21 @@ Hoarder provides a search query language to filter and find bookmarks. Here are Here's a comprehensive table of all supported qualifiers: -| Qualifier | Description | Example Usage | -| -------------------------------- | -------------------------------------------------- | --------------------- | -| `is:fav` | Favorited bookmarks | `is:fav` | -| `is:archived` | Archived bookmarks | `-is:archived` | -| `is:tagged` | Bookmarks that has one or more tags | `is:tagged` | -| `is:inlist` | Bookmarks that are in one or more lists | `is:inlist` | -| `is:link`, `is:text`, `is:media` | Bookmarks that are of type link, text or media | `is:link` | -| `url:<value>` | Match bookmarks with URL substring | `url:example.com` | -| `#<tag>` | Match bookmarks with specific tag | `#important` | -| | Supports quoted strings for tags with spaces | `#"work in progress"` | -| `list:<name>` | Match bookmarks in specific list | `list:reading` | -| | Supports quoted strings for list names with spaces | `list:"to review"` | -| `after:<date>` | Bookmarks created on or after date (YYYY-MM-DD) | `after:2023-01-01` | -| `before:<date>` | Bookmarks created on orbefore date (YYYY-MM-DD) | `before:2023-12-31` | +| Qualifier | Description | Example Usage | +|----------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------| +| `is:fav` | Favorited bookmarks | `is:fav` | +| `is:archived` | Archived bookmarks | `-is:archived` | +| `is:tagged` | Bookmarks that has one or more tags | `is:tagged` | +| `is:inlist` | Bookmarks that are in one or more lists | `is:inlist` | +| `is:link`, `is:text`, `is:media` | Bookmarks that are of type link, text or media | `is:link` | +| `url:<value>` | Match bookmarks with URL substring | `url:example.com` | +| `#<tag>` | Match bookmarks with specific tag | `#important` | +| | Supports quoted strings for tags with spaces | `#"work in progress"` | +| `list:<name>` | Match bookmarks in specific list | `list:reading` | +| | Supports quoted strings for list names with spaces | `list:"to review"` | +| `after:<date>` | Bookmarks created on or after date (YYYY-MM-DD) | `after:2023-01-01` | +| `before:<date>` | Bookmarks created on or before date (YYYY-MM-DD) | `before:2023-12-31` | +| `age:<time-range>` | Match bookmarks based on how long ago they were created. Use `<` or `>` to indicate the maximum / minimum age of the bookmarks. <br> Supported units: `d` (days), `w` (weeks), `m` (months), `y` (years). | `age:<1d` `age:>2w` <br> `age:<6m` `age:>3y` | ### Examples |
