currentTitle, currentPastTitle, currentCompany, currentPastCompany, and keywords fields support Boolean search operators.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
How to use Boolean operators in title, company, and keyword filters.
currentTitle, currentPastTitle, currentCompany, currentPastCompany, and keywords fields support Boolean search operators.
| Operator | Description | Example |
|---|---|---|
AND | Both terms must appear | PHP AND JavaScript |
OR | At least one term must appear | Python OR Java |
NOT | Exclude a term | Manager NOT Assistant |
() | Group terms for logic | (Java AND Spring) OR Python |
"" | Exact phrase match | "Software Engineer" |
{
"currentTitle": "(\"Software Engineer\") OR Developer",
"keywords": "PHP AND JavaScript"
}
{
"currentTitle": "Manager NOT Assistant",
"currentCompany": "Google OR Microsoft"
}