* 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>
2.8 KiB
layout, title, categories, featured, popular, tags
| layout | title | categories | featured | popular | tags | |||
|---|---|---|---|---|---|---|---|---|
| article | Searching the vault |
|
false | false |
|
Bitwarden indexes your vault using a full-text search{:target="_blank"} programming library called Lunr{: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).namesubtitle- Login username, card brand + last four, and identity name.notesfields- Name and value. Only "text" type field values are included.attachments- File namelogin.usernamelogin.uris- Only the URI's hostname{:target="_blank"} value.
Wildcard Searches
The asterisk character (*) provides the ability to perform wildcard searches in your vault. Examples:
*bitwardenbitwarden**bitwarden**bit*war*den*
{% callout info %} The following fields automatically include leading and trailing wildcards while performing normal search queries:
namesubtitlelogin.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{: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{:target="_blank"}.