Search & Filter
Learn everything you need to know about searching and filtering.
Introduction
fylr offers several tools to search and filter for records. From defining your sources, to powerful full text searches and expert options, this article explains the possibilities.
Sources
Full Text Search
Full-text search provides several options to precisely define search queries and narrow down results. The following features can be used individually or combined, depending on your use case.
When typing a word into the search field, you get suggestions where you can pick from or simply continue writing.
Fulltext
Exact Match
Word Suggestions
Lists
Searching for a Specific Word
Case Sensitivity
By default, full-text search is case-insensitive. This means that search results are returned regardless of capitalization.
Examples:
report,Report, andREPORTreturn the same results.Searching for
programmfabrikalso matchesProgrammfabrik.
A case-sensitive search is only possible with the exact search. As the exact search matches the whole string, you need to add wildcards like `*programmfabrik*`.
Example:
`*programmfabrik*`does not matchProgrammfabrikorPROGRAMMFABRIK.
Exact Search
Phrase Search
Phrase search allows you to search for an exact sequence of words. The words must appear in the specified order and directly next to each other.
To perform a phrase search, enclose the phrase in quotation marks.
Example:
This search returns only records where the complete phrase appears exactly as entered.
Notes:
Case sensitivity is ignored.
No additional words may appear between the phrase terms.
Phrase search is especially useful for quotes, fixed expressions, or known text fragments.
Boolean Operators
Boolean operators allow you to logically combine multiple search terms.
AND
The AND operator returns only records that contain all specified terms. It is not necessary to use the AND operator explicitly. By default, all search terms are automatically combined using an implicit AND. Therefore, records will only be returned if they contain all specified terms.
Example:
Result: Only records containing both contract and termination.
OR
The OR operator returns records that contain at least one of the specified terms.
Example:
Result: Records containing invoice, receipt, or both.
NOT
The NOT operator excludes records that contain a specific term.
Example:
Result: Records that contain report but not draft.
Combining and Grouping Operators
Boolean operators can be combined and grouped using parentheses.
Example:
Wildcard Search
Wildcard search allows you to find terms when parts of the word are unknown or variable.
Single-Character Wildcard (?)
The question mark ? represents exactly one arbitrary character.
Example:
Matches, for example:
Mayer
Maier
Mauer
Notes:
Each
?replaces exactly one character.Multiple
?characters can be used within a single term.
Multi-Character Wildcard (*)
The asterisk * represents zero, one, or multiple characters.
Examples:
Matches:
Auto
Automatic
Automobile
Matches:
annualreport
auditreport
Notes:
The
*wildcard can be used at the beginning, middle, or end of a word.Searches with a leading
*may impact performance.
Expert Search
Filter
Last updated