Grooper Help - Version 25.0
25.0.0017 2,127
  • Overview
  • Help Status

Search Page

Web Page GrooperReview.Pages.Search

Displays a user interface for searching documents in a Grooper repository.

Remarks

The search page features a Query Editor where queries are entered, a Search Result List where the result set is displayed, and a Document Viewer which displays individual search results.

The Search Page also features an expandable list of saved queries at the left side of the page.

Query Syntax

A search query consists of four parameters: search, filter, select, and order by. The search and filter parameters control which documents are matched. The select parameter controls which fields are included in the result set, and order by controls what order search results are returned in.

Search

Searches the text content of the document using Lucene search syntax. Can also search the text content of individual fields, when a fielded search is performed by prefixing the term with "fieldname: ". Please note that fielded search only works with string fields.

ExampleDescription
acme chicagoFind documents containing "acme" or "chicago".
acme OR chicagoFind documents containing "acme" or "chicago".
acme AND chicagoFind documents containing both "acme" and "chicago".
chicago~Fuzzy search. Find documents containing the word "chicago", within a distance of 2 characters.
chic*Wildcard search. Matches words starting with "chic".
ch*goWildcard search. Matches words starting with "ch" and ending with "go".
www.*.comWildcard search. Matches website URLs.
/www\.[a-z]+\.com/Regex Search. Matches website URLs.
/.*cago/Regex Search. Matches words ending with "cago".
"northwest products"Find documents containing the phrase "Northwest Products".
"northwest products"~2Proximity search. Find documents containing the words "Northwest" and "Products" within a distance of 2 words to each other.
"canon^2 document scanners"~2Boosted search. Make sure documents containing "canon" are at the top of the result set.

Click here for more information and examples.

Filter

Searches the metadata fields of the document using OData $filter syntax. A filter defines a set of typed comparisons to be evaluated at the field level. This could be used to find documents where the Document Date field is greater than a specific date, or to find invoices where the Invoice Amount field is greater than $5,000.00.

Click here for more information and examples.

ExampleDescription
Status eq 'Completed'Find documents where the Status field equals "Completed".
Document_Date lt '2024-01-01'Find documents occurring before 1/1/2024.
Invoice_Date lt now() sub duration'P10Y'Find invoices more that 10 years old..
Invoice_Amount gt 5000Find documents where the Invoice Amount field is greater than $5,000.00.
Customer_Name eq nullFind documents where Customer_Name field has a NULL value.
Line_Items/any(l: l/Line_Total gt 5000)Find documents where the Line_Items table contains a row where the Line_Total field is greater than $5,000.00.
search.in(Status,'Pending,Paid')Find documents where the value of the Status field is 'Pending' or 'Paid'.
search.in(TypeName,'Invoice|Return', '|')Find documents where the value of the TypeName field is 'Invoice' or 'Return'.
search.ismatch('www.*.com')Find documents where the full text content matches a Lucene search string.
search.ismatch('ingram', 'TypeName')Find documents where the TypeName field contains 'ingram'.

Select

A comma-separated list of fields to return with each search result.

Click here for more information and examples.

Order By

A comma-separated list of field to order the result set by

Click here for more information and examples.

Context Menu Commands

Command Shortcut Description
file_copy Copy Ctrl+C Copies the current selection to the clipboard. Items will be duplicated when pasted.
link Copy Link Copy a link to the clipboard for the selected Grooper document.
content_cut Cut Ctrl+X Copies the current selection to the clipboard. Items will be moved when pasted.
drive_file_move Go to Document Go to the selected Grooper document on the Design Page.
keyboard Review Document View this document using the Review Page.
web View Properties Displays properties of the currently-selected item.

Command Buttons

ButtonShortcut KeySummary
keyboard_double_arrow_left prev_hit Alt+P

Move to the previous hit highlight on the current document.

keyboard_double_arrow_right next_hit Alt+N

Move to the next hit highlight on the current document.

keyboard review_doc

View this document using the Review Page.

drive_file_move goto_doc

Go to Grooper document.

link copy_doclink

Copy a link to the clipboard for the selected Grooper document.

picture_as_pdf pdf

Download a PDF document containing the result set.

folder_zip zip

Download a ZIP file containing file attachments on documents in the result set.

grid_on csv

Download a CSV file containing the list of documents in the result set.

bottom_panel_open mode

Toggle between compact and expanded display mode.

account_circle user_info

Display user information and setting management functions.

dark_mode dark_mode

Toggle between dark and light mode.

Child Controls

NameTypeSummary
Saved Queries Query List

A list of saved queries and LLM chat sessions for the active search index.

Query Editor Query Editor

Displays search criteria.

Document Viewer Document Viewer

Displays the currently-selected document from the Result List.

Pager Page Navigator

Allows navigation through the result set.

Context Menu Context Menu

Display menu commands related to a document search result.

Result List Search Result List

Displays the list of documents matching the previous search.

Recommended Content

Notification