Using Boolean Search Operators
Construct more precise search queries using AND, OR, and parenthetical grouping to find exactly what you're looking for.
Overview
Boolean search operators let you build complex queries that combine multiple conditions, helping you run more targeted investigations and reduce false positives.
Supported Operators
- AND — Returns results that match both conditions. Example:
Chocolate AND Coffee - OR — Returns results that match either condition. Example:
Chocolate OR Coffee - Parenthetical grouping — Combine operators for complex logic. Example:
(Chocolate OR Coffee) AND Milk
Working with Multi-Word Phrases
When using boolean operators with phrases that contain multiple words, use an asterisk (*) in place of spaces.
Examples that work:
| Query | What It Returns |
Chocolate AND Coffee |
Results containing both "Chocolate" and "Coffee" |
(Chocolate OR Coffee) AND Milk |
Results containing Milk with either Chocolate or Coffee |
(Chocolate OR Coffee) AND Ice*Cream |
Results containing "Ice Cream" with either Chocolate or Coffee |
ChocolateIceCream |
Results containing "Chocolate Ice Cream" |