> ## Documentation Index
> Fetch the complete documentation index at: https://docs.signalhire.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Boolean Query Guide for People Search 

> How to use Boolean operators in title, company, and keyword filters.

The `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"`         |

## Examples

Find software engineers or developers with PHP and JavaScript skills:

```json theme={null}
{
  "currentTitle": "(\"Software Engineer\") OR Developer",
  "keywords": "PHP AND JavaScript"
}
```

Find managers excluding assistants at Google or Microsoft:

```json theme={null}
{
  "currentTitle": "Manager NOT Assistant",
  "currentCompany": "Google OR Microsoft"
}
```
