aboutsummaryrefslogtreecommitdiffstats
path: root/docs/versioned_docs/version-v0.23.2/14-Guides/02-search-query-language.md
diff options
context:
space:
mode:
authorMohamed Bassem <me@mbassem.com>2025-04-13 16:25:03 +0000
committerMohamed Bassem <me@mbassem.com>2025-04-13 16:25:03 +0000
commitf3c525b7f7dd360f654d8621bbf64e31ad5ff48e (patch)
treef9c8378e5c24caf1441f055d0d08b60f8b91a0ab /docs/versioned_docs/version-v0.23.2/14-Guides/02-search-query-language.md
parentae76f9464f2f64018548f4ddfe7b94b92616c6dd (diff)
downloadkarakeep-f3c525b7f7dd360f654d8621bbf64e31ad5ff48e.tar.zst
docs: Revert 0.23.2 docs and just update 0.23.1 instead
Diffstat (limited to 'docs/versioned_docs/version-v0.23.2/14-Guides/02-search-query-language.md')
-rw-r--r--docs/versioned_docs/version-v0.23.2/14-Guides/02-search-query-language.md69
1 files changed, 0 insertions, 69 deletions
diff --git a/docs/versioned_docs/version-v0.23.2/14-Guides/02-search-query-language.md b/docs/versioned_docs/version-v0.23.2/14-Guides/02-search-query-language.md
deleted file mode 100644
index b0d8ffd3..00000000
--- a/docs/versioned_docs/version-v0.23.2/14-Guides/02-search-query-language.md
+++ /dev/null
@@ -1,69 +0,0 @@
-# Search Query Language
-
-Hoarder provides a search query language to filter and find bookmarks. Here are all the supported qualifiers and how to use them:
-
-## Basic Syntax
-
-- Use spaces to separate multiple conditions (implicit AND)
-- Use `and`/`or` keywords for explicit boolean logic
-- Use parentheses `()` for grouping conditions
-- Prefix qualifiers with `-` to negate them
-
-## Qualifiers
-
-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` |
-
-### Examples
-
-```plaintext
-# Find favorited bookmarks from 2023 that are tagged "important"
-is:fav after:2023-01-01 before:2023-12-31 #important
-
-# Find archived bookmarks that are either in "reading" list or tagged "work"
-is:archived and (list:reading or #work)
-
-# Find bookmarks that are not tagged or not in any list
--is:tagged or -is:inlist
-```
-
-## Combining Conditions
-
-You can combine multiple conditions using boolean logic:
-
-```plaintext
-# Find favorited bookmarks from 2023 that are tagged "important"
-is:fav after:2023-01-01 before:2023-12-31 #important
-
-# Find archived bookmarks that are either in "reading" list or tagged "work"
-is:archived and (list:reading or #work)
-
-# Find bookmarks that are not favorited and not archived
--is:fav -is:archived
-```
-
-## Text Search
-
-Any text not part of a qualifier will be treated as a full-text search:
-
-```plaintext
-# Search for "machine learning" in bookmark content
-machine learning
-
-# Combine text search with qualifiers
-machine learning is:fav
-```