Search operators
Refine your results with these commands
Operator
Syntax
Example
Exact match
Quotes ("")
"google oauth"
returns messages that contain the exact phrase "google oauth"
OR
Comma (,)
charts, analytics
returns messages that have either "charts" or "analytics"
Required
Plus sign (+)
charts, analytics, +cancel
returns messages that have either ["charts" OR "analytics"] AND "cancel"
Exclude
Minus sign (-)
charts, -analytics
returns messages that contain "charts" but not "anlaytics"
Partial string match
Asterisk (*)
ana*
returns messages that contain any word starting with "ana", like "analyze", "analysis", "analyst", etc.
Last updated