> ## 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

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

The Connecteam plugin syncs data locally. Use `corsair.connecteam.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>

## Account

Path: `connecteam.db.account.search`

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

### Searchable filters

| Field         | Type     | Operators                                  |
| ------------- | -------- | ------------------------------------------ |
| `entity_id`   | `string` | equals, contains, startsWith, endsWith, in |
| `companyId`   | `string` | equals, contains, startsWith, endsWith, in |
| `companyName` | `string` | equals, contains, startsWith, endsWith, in |

*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).*

***

## Conversations

Path: `connecteam.db.conversations.search`

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

### Searchable filters

| Field       | Type     | Operators                                  |
| ----------- | -------- | ------------------------------------------ |
| `entity_id` | `string` | equals, contains, startsWith, endsWith, in |
| `type`      | `string` | equals, contains, startsWith, endsWith, in |
| `title`     | `string` | equals, contains, startsWith, endsWith, in |

*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).*

***

## Custom Field Categories

Path: `connecteam.db.customFieldCategories.search`

```ts theme={null}
const rows = await corsair.connecteam.db.customFieldCategories.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 |

*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).*

***

## Custom Fields

Path: `connecteam.db.customFields.search`

```ts theme={null}
const rows = await corsair.connecteam.db.customFields.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 |
| `type`                   | `string`  | equals, contains, startsWith, endsWith, in |
| `categoryId`             | `number`  | equals, gt, gte, lt, lte, in               |
| `isRequired`             | `boolean` | equals                                     |
| `isVisibleToAllAdmins`   | `boolean` | equals                                     |
| `isEditableForAllAdmins` | `boolean` | equals                                     |
| `isVisibleToUsers`       | `boolean` | equals                                     |
| `isEditableForUsers`     | `boolean` | equals                                     |
| `isMultiSelect`          | `boolean` | equals                                     |

*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).*

***

## Forms

Path: `connecteam.db.forms.search`

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

### Searchable filters

| Field           | Type     | Operators                                  |
| --------------- | -------- | ------------------------------------------ |
| `entity_id`     | `string` | equals, contains, startsWith, endsWith, in |
| `formId`        | `number` | equals, gt, gte, lt, lte, in               |
| `formName`      | `string` | equals, contains, startsWith, endsWith, in |
| `createdAt`     | `number` | equals, gt, gte, lt, lte, in               |
| `lastUpdatedAt` | `number` | equals, gt, gte, lt, lte, in               |

*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).*

***

## Jobs

Path: `connecteam.db.jobs.search`

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

### Searchable filters

| Field           | Type      | Operators                                  |
| --------------- | --------- | ------------------------------------------ |
| `entity_id`     | `string`  | equals, contains, startsWith, endsWith, in |
| `jobId`         | `string`  | equals, contains, startsWith, endsWith, in |
| `title`         | `string`  | equals, contains, startsWith, endsWith, in |
| `code`          | `string`  | equals, contains, startsWith, endsWith, in |
| `color`         | `string`  | equals, contains, startsWith, endsWith, in |
| `description`   | `string`  | equals, contains, startsWith, endsWith, in |
| `isDeleted`     | `boolean` | equals                                     |
| `useParentData` | `boolean` | equals                                     |

*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).*

***

## Performance Indicators

Path: `connecteam.db.performanceIndicators.search`

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

### Searchable filters

| Field       | Type     | Operators                                  |
| ----------- | -------- | ------------------------------------------ |
| `entity_id` | `string` | equals, contains, startsWith, endsWith, in |
| `name`      | `string` | equals, contains, startsWith, endsWith, in |

*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).*

***

## Policy Types

Path: `connecteam.db.policyTypes.search`

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

### Searchable filters

| Field       | Type     | Operators                                  |
| ----------- | -------- | ------------------------------------------ |
| `entity_id` | `string` | equals, contains, startsWith, endsWith, in |
| `name`      | `string` | equals, contains, startsWith, endsWith, in |

*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).*

***

## Publishers

Path: `connecteam.db.publishers.search`

```ts theme={null}
const rows = await corsair.connecteam.db.publishers.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               |
| `publisherId` | `number` | equals, gt, gte, lt, lte, in               |
| `name`        | `string` | equals, contains, startsWith, endsWith, in |

*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).*

***

## Schedulers

Path: `connecteam.db.schedulers.search`

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

### Searchable filters

| Field         | Type      | Operators                                  |
| ------------- | --------- | ------------------------------------------ |
| `entity_id`   | `string`  | equals, contains, startsWith, endsWith, in |
| `schedulerId` | `number`  | equals, gt, gte, lt, lte, in               |
| `name`        | `string`  | equals, contains, startsWith, endsWith, in |
| `isArchived`  | `boolean` | equals                                     |
| `timezone`    | `string`  | equals, contains, startsWith, endsWith, in |

*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).*

***

## Smart Groups

Path: `connecteam.db.smartGroups.search`

```ts theme={null}
const rows = await corsair.connecteam.db.smartGroups.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               |
| `smartGroupId`   | `number` | equals, gt, gte, lt, lte, in               |
| `name`           | `string` | equals, contains, startsWith, endsWith, in |
| `groupSegmentId` | `number` | equals, gt, gte, lt, lte, in               |
| `description`    | `string` | equals, contains, startsWith, endsWith, in |

*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).*

***

## Task Boards

Path: `connecteam.db.taskBoards.search`

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

### Searchable filters

| Field         | Type      | Operators                                  |
| ------------- | --------- | ------------------------------------------ |
| `entity_id`   | `string`  | equals, contains, startsWith, endsWith, in |
| `taskBoardId` | `number`  | equals, gt, gte, lt, lte, in               |
| `name`        | `string`  | equals, contains, startsWith, endsWith, in |
| `title`       | `string`  | equals, contains, startsWith, endsWith, in |
| `isArchived`  | `boolean` | equals                                     |

*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).*

***

## Users

Path: `connecteam.db.users.search`

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

### Searchable filters

| Field                | Type      | Operators                                  |
| -------------------- | --------- | ------------------------------------------ |
| `entity_id`          | `string`  | equals, contains, startsWith, endsWith, in |
| `userId`             | `number`  | equals, gt, gte, lt, lte, in               |
| `firstName`          | `string`  | equals, contains, startsWith, endsWith, in |
| `lastName`           | `string`  | equals, contains, startsWith, endsWith, in |
| `phoneNumber`        | `string`  | equals, contains, startsWith, endsWith, in |
| `userType`           | `string`  | equals, contains, startsWith, endsWith, in |
| `email`              | `string`  | equals, contains, startsWith, endsWith, in |
| `isArchived`         | `boolean` | equals                                     |
| `kioskCode`          | `string`  | equals, contains, startsWith, endsWith, in |
| `createdAt`          | `number`  | equals, gt, gte, lt, lte, in               |
| `modifiedAt`         | `number`  | equals, gt, gte, lt, lte, in               |
| `archivedAt`         | `number`  | equals, gt, gte, lt, lte, in               |
| `lastLogin`          | `number`  | equals, gt, gte, lt, lte, in               |
| `invitedToBeManager` | `boolean` | equals                                     |
| `profilePictureUrl`  | `string`  | equals, contains, startsWith, endsWith, in |
| `mobileDevice`       | `string`  | equals, contains, startsWith, endsWith, in |
| `osVersion`          | `string`  | equals, contains, startsWith, endsWith, in |
| `appVersion`         | `string`  | equals, contains, startsWith, endsWith, in |
| `mobileDeviceId`     | `string`  | equals, contains, startsWith, endsWith, in |

*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).*

***
