mirror of
https://github.com/bitwarden/help
synced 2025-12-06 00:03:30 +00:00
* jekyll redirect from * Organizations rev (#262) * Organizations revisions initial commit. * API doc updates * Fix absolute link causing build failure. * Add import to org article, and downstream order changes. * Bitwarden 101 videos: 1st steps toward proliferating these throughout /help. * Added 'Create Your Account' article, which references B101 Videos. * About SSO redirect & promote importing for orgs up the list * Create Org FAQs & trim Feature FAQs accordingly. * Image for Org FAQs * Move 'About the Business Portal' to Orgs category, and re-order accordingly. * Final edits. * Dchoi/bootstrap upgrade (#264) * bootstrap 4 upgrade and cleanup update gulp tasks * bootstrap package updates * renaming file convention * general outline of help outline * bitwarden help cleanup * article cleanup * article general styling complete * bootstrap help page upgrades * sidebar updates * Dchoi/bootstrap upgrade (#267) * bootstrap 4 upgrade and cleanup update gulp tasks * bootstrap package updates * renaming file convention * general outline of help outline * bitwarden help cleanup * article cleanup * article general styling complete * bootstrap help page upgrades * sidebar updates * toc dynamic and more updates * fix callout conditions * sidebar collapse functionality added * sidebar header toggle functionality * sidebar article fixes * Update sidebar.html Fix sidebar Release Notes link. * Update releasenotes.md Remove unnecessary category tag. * Delete release-notes.md Remove unnecessary category. * Update why-choose-bitwarden-for-your-team.md Test table image differentiation * Update why-choose-bitwarden-for-your-team.md Second image differentiation test * removed links from category breadcrumb and replaced with badges Co-authored-by: fred_the_tech_writer <69817454+fschillingeriv@users.noreply.github.com>
72 lines
2.8 KiB
Markdown
72 lines
2.8 KiB
Markdown
---
|
|
layout: article
|
|
title: Searching the vault
|
|
categories: [features]
|
|
featured: false
|
|
popular: false
|
|
tags: [search, lunr]
|
|
---
|
|
|
|
Bitwarden indexes your vault using a [full-text search](https://en.wikipedia.org/wiki/Full-text_search){:target="_blank"} programming library called [Lunr](https://lunrjs.com/){:target="_blank"}. Lunr provides the ability to invoke high-performance search queries against your vault to quickly find what you need with great accuracy.
|
|
|
|
## Applications that use full-text search
|
|
|
|
The following Bitwarden applications provide full-text searching capabilities and are applicable to the information this article:
|
|
|
|
- Web vault
|
|
- Desktop applications
|
|
- Browser extensions
|
|
|
|
This article **does not** apply to the following Bitwarden applications, which provide only basic search capabilities:
|
|
|
|
- CLI
|
|
- Mobile apps
|
|
|
|
## Indexed Fields
|
|
|
|
The following fields from items in your vault are indexed and are searchable:
|
|
|
|
- `shortid` - First 8 characters of the item's id.
|
|
- `organizationid` - Id of the item's organization (if it belongs to one).
|
|
- `name`
|
|
- `subtitle` - Login username, card brand + last four, and identity name.
|
|
- `notes`
|
|
- `fields` - Name and value. Only "text" type field values are included.
|
|
- `attachments` - File name
|
|
- `login.username`
|
|
- `login.uris` - Only the URI's [hostname](https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/hostname){:target="_blank"} value.
|
|
|
|
## Wildcard Searches
|
|
|
|
The asterisk character (`*`) provides the ability to perform wildcard searches in your vault. Examples:
|
|
|
|
- `*bitwarden`
|
|
- `bitwarden*`
|
|
- `*bitwarden*`
|
|
- `*bit*war*den*`
|
|
|
|
{% callout info %}
|
|
The following fields automatically include leading and trailing wildcards while performing normal search queries:
|
|
|
|
- `name`
|
|
- `subtitle`
|
|
- `login.uris`
|
|
|
|
It is not necessary to provide wildcards if you are searching for information in these fields.
|
|
{% endcallout %}
|
|
|
|
## 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"}.
|
|
|
|
### Advanced Search Examples
|
|
|
|
- `>bitwarden*` - Search all fields for a term that starts with "bitwarden".
|
|
- `>notes:something` - Search the notes field for the term "something".
|
|
- `>login.username:jsmith` - Search the username field on items of type login 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 (items that you own).
|
|
- `>+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"}.
|