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

# Database

> Wiza local sync: searchable entities, `.search()` filters, and operators.

The Wiza plugin syncs data locally. Use `corsair.wiza.db.<entity>.search({ data, limit?, offset? })` with the filters listed per entity.

<Info>
  **New to Corsair?** See [database operations](/concepts/database), [data synchronization](/concepts/integrations), and [multi-tenancy](/concepts/multi-tenancy).
</Info>

## Lists

Path: `wiza.db.lists.search`

```ts theme={null}
const rows = await corsair.wiza.db.lists.search({
    data: { /* filters below */ },
    limit: 100,
    offset: 0,
});
```

### Searchable filters

| Field              | Type     | Operators                                  |
| ------------------ | -------- | ------------------------------------------ |
| `entity_id`        | `string` | equals, contains, startsWith, endsWith, in |
| `id`               | `number` | equals, gt, gte, lt, lte, in               |
| `name`             | `string` | equals, contains, startsWith, endsWith, in |
| `status`           | `string` | equals, contains, startsWith, endsWith, in |
| `enrichment_level` | `string` | equals, contains, startsWith, endsWith, in |
| `report_type`      | `string` | equals, contains, startsWith, endsWith, in |
| `created_at`       | `string` | equals, contains, startsWith, endsWith, in |
| `finished_at`      | `string` | equals, contains, startsWith, endsWith, in |
| `updatedAt`        | `date`   | equals, before, after, between             |

*Every `.search()` also accepts `limit` and `offset` for pagination. `.list()` is available on the same path without the `.search` suffix in code — see [database operations](/concepts/database).*

***

## Prospects

Path: `wiza.db.prospects.search`

```ts theme={null}
const rows = await corsair.wiza.db.prospects.search({
    data: { /* filters below */ },
    limit: 100,
    offset: 0,
});
```

### Searchable filters

| Field              | Type     | Operators                                  |
| ------------------ | -------- | ------------------------------------------ |
| `entity_id`        | `string` | equals, contains, startsWith, endsWith, in |
| `linkedin_url`     | `string` | equals, contains, startsWith, endsWith, in |
| `full_name`        | `string` | equals, contains, startsWith, endsWith, in |
| `job_title`        | `string` | equals, contains, startsWith, endsWith, in |
| `job_company_name` | `string` | equals, contains, startsWith, endsWith, in |
| `industry`         | `string` | equals, contains, startsWith, endsWith, in |
| `location_name`    | `string` | equals, contains, startsWith, endsWith, in |
| `updatedAt`        | `date`   | equals, before, after, between             |

*Every `.search()` also accepts `limit` and `offset` for pagination. `.list()` is available on the same path without the `.search` suffix in code — see [database operations](/concepts/database).*

***

## Reveals

Path: `wiza.db.reveals.search`

```ts theme={null}
const rows = await corsair.wiza.db.reveals.search({
    data: { /* filters below */ },
    limit: 100,
    offset: 0,
});
```

### Searchable filters

| Field                  | Type      | Operators                                  |
| ---------------------- | --------- | ------------------------------------------ |
| `entity_id`            | `string`  | equals, contains, startsWith, endsWith, in |
| `id`                   | `number`  | equals, gt, gte, lt, lte, in               |
| `status`               | `string`  | equals, contains, startsWith, endsWith, in |
| `is_complete`          | `boolean` | equals                                     |
| `name`                 | `string`  | equals, contains, startsWith, endsWith, in |
| `company`              | `string`  | equals, contains, startsWith, endsWith, in |
| `title`                | `string`  | equals, contains, startsWith, endsWith, in |
| `location`             | `string`  | equals, contains, startsWith, endsWith, in |
| `linkedin_profile_url` | `string`  | equals, contains, startsWith, endsWith, in |
| `email`                | `string`  | equals, contains, startsWith, endsWith, in |
| `email_status`         | `string`  | equals, contains, startsWith, endsWith, in |
| `mobile_phone`         | `string`  | equals, contains, startsWith, endsWith, in |
| `phone_number`         | `string`  | equals, contains, startsWith, endsWith, in |
| `company_domain`       | `string`  | equals, contains, startsWith, endsWith, in |
| `company_industry`     | `string`  | equals, contains, startsWith, endsWith, in |
| `enrichment_level`     | `string`  | equals, contains, startsWith, endsWith, in |
| `updatedAt`            | `date`    | equals, before, after, between             |

*Every `.search()` also accepts `limit` and `offset` for pagination. `.list()` is available on the same path without the `.search` suffix in code — see [database operations](/concepts/database).*

***
