Skip to main content

Search

The Docwize Search function enables users to search through the content of main documents, emails, attachments, and their respective metadata. Docwize processes search queries in a specific order of precedence, similar to mathematical BODMAS logic. Following that logic helps return strong search results.

Annotation Animation

What Search looks through

  • Main documents
  • Emails
  • Attachments
  • Metadata

What you can do from the Search page

  • Enter a content search
  • Access saved search requests
  • Open Advanced Search options
  • Open the Elasticsearch Query Assistant
  • Open Search Help notes
  • Run or end a search

Search Homepage

workflow-builder

Docwize Search Homepage

FieldDescription
Content SearchUsers type in the word/phrase for searching in this section.
Enables users to access saved search requests.
Navigates to the Elasticsearch Query Assistant.
Accesses Search Help notes. This includes a ‘Current Query Explanation’ which interprets users' search and provides a summary of what the query is set to find.
Ends search.
Initiates search.
Advanced SearchAccesses Advanced Search options.
SearchInitiates search.

Search Operators

Search operators are special characters or command that users can use in a search to refine or filter search results. NOTE: it is important to keep in mind the order of precedence when using these search operators.

OperatorSignifiesExampleSearch Results Include
&& or ANDLogical ANDproject AND reportDocuments containing both project and report.
|| or ORLogical ORinvoice OR receiptDocuments containing either invoice or receipt.
! or NOTLogical NOTreport !draftDocuments with report but excluding draft.
" "Phrase Match"project summary"Matches the exact phrase project summary.
doc*Prefix Matchdoc*Matches words starting with doc (document, Docwize).
*mentSuffix Match*mentMatches words ending with ment (statement, document).
*tag*Substring Match*tag*Matches words containing tag (tagged, tagging).
( )Grouping(invoice OR receipt) AND approvedCombines grouped terms logically.
~1Fuzzy Match (edit distance)plan~1Matches close variants like plan, plant, plane.
" "~4Phrase Slop (proximity)"project report"~4Matches project and report within 4 words.

Example of a Complex Query

((project && update) || (summary && notes)) && !archived

Finds documents containing project update, summary notes, or both, excluding any that mention archived.

Real-time Syntax Validation

The Search function includes real-time syntax validation. Top search results will dynamically show as a menu below the search bar. Invalid and incorrect syntax are highlighted in red, alerting a user to errors. Clicking on the Help icon (?) will bring up a menu which provides an explanation of the error, allowing a user to make immediate corrections.

Example: Real-time Syntax Validation