1
0
mirror of https://github.com/bitwarden/help synced 2025-12-15 15:53:53 +00:00

improve search docs

This commit is contained in:
Kyle Spearrin
2018-10-30 11:10:24 -04:00
parent b74dc04999
commit e2d45341b5

View File

@@ -27,6 +27,7 @@ This article **does not** apply to the following Bitwarden applications, which p
The following fields from items in your vault are indexed and are searchable: The following fields from items in your vault are indexed and are searchable:
- `shortid` - First 8 characters of the item's id. - `shortid` - First 8 characters of the item's id.
- `organizationid` - Id of the item's organization (if it belongs to one).
- `name` - `name`
- `subtitle` - Login username, card brand + last four, and identity name. - `subtitle` - Login username, card brand + last four, and identity name.
- `notes` - `notes`
@@ -56,11 +57,15 @@ It is not necessary to provide wildcards if you are searching for information in
## Advanced Searches ## Advanced Searches
Starting your search query with a greater than character (`>`) enables the full power of [Lunr search queries](https://lunrjs.com/guides/searching.html){:target="_blank"}. Examples: Starting your search query with a greater than character (`>`) enables the full power of [Lunr search queries](https://lunrjs.com/guides/searching.html){:target="_blank"}.
- `>bitwarden*` ### Advanced Search Examples
- `>notes:something`
- `>login.username:jsmith` - `>bitwarden*` - Search all fields for a term that starts with "bitwarden".
- `>+foo bar -baz` - `>notes:something` - Search the notes field for the term "something".
- `>login.username:jsmith` - Search a login's username field for the term "jsmith".
- `>+organizationid:*` - Search for all items that belong to an organization.
- `>-organizationid:*` - Search for all items that *do not* belong to an organization.
- `>+foo bar -baz` - Search for items that must contain "foo", might contain "bar" and must not contain "baz".
Learn more about writing advanced search queries using [Lunr's searching guide](https://lunrjs.com/guides/searching.html){:target="_blank"}. Learn more about writing advanced search queries using [Lunr's searching guide](https://lunrjs.com/guides/searching.html){:target="_blank"}.