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

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

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

## Folders

Path: `cloudinary.db.folders.search`

```ts theme={null}
const rows = await corsair.cloudinary.db.folders.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 |
| `path`        | `string` | equals, contains, startsWith, endsWith, in |
| `external_id` | `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).*

***

## Live Streams

Path: `cloudinary.db.liveStreams.search`

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

### Searchable filters

| Field        | Type     | Operators                                  |
| ------------ | -------- | ------------------------------------------ |
| `entity_id`  | `string` | equals, contains, startsWith, endsWith, in |
| `id`         | `string` | equals, contains, startsWith, endsWith, in |
| `name`       | `string` | equals, contains, startsWith, endsWith, in |
| `status`     | `string` | equals, contains, startsWith, endsWith, in |
| `uri`        | `string` | equals, contains, startsWith, endsWith, in |
| `stream_key` | `string` | equals, contains, startsWith, endsWith, in |
| `created_at` | `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).*

***

## Metadata Fields

Path: `cloudinary.db.metadataFields.search`

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

### Searchable filters

| Field         | Type      | Operators                                  |
| ------------- | --------- | ------------------------------------------ |
| `entity_id`   | `string`  | equals, contains, startsWith, endsWith, in |
| `external_id` | `string`  | equals, contains, startsWith, endsWith, in |
| `label`       | `string`  | equals, contains, startsWith, endsWith, in |
| `type`        | `string`  | equals, contains, startsWith, endsWith, in |
| `mandatory`   | `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).*

***

## Metadata Rules

Path: `cloudinary.db.metadataRules.search`

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

### Searchable filters

| Field       | Type     | Operators                                  |
| ----------- | -------- | ------------------------------------------ |
| `entity_id` | `string` | equals, contains, startsWith, endsWith, in |
| `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).*

***

## Resources

Path: `cloudinary.db.resources.search`

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

### Searchable filters

| Field          | Type     | Operators                                  |
| -------------- | -------- | ------------------------------------------ |
| `entity_id`    | `string` | equals, contains, startsWith, endsWith, in |
| `asset_id`     | `string` | equals, contains, startsWith, endsWith, in |
| `public_id`    | `string` | equals, contains, startsWith, endsWith, in |
| `type`         | `string` | equals, contains, startsWith, endsWith, in |
| `format`       | `string` | equals, contains, startsWith, endsWith, in |
| `version`      | `number` | equals, gt, gte, lt, lte, in               |
| `url`          | `string` | equals, contains, startsWith, endsWith, in |
| `secure_url`   | `string` | equals, contains, startsWith, endsWith, in |
| `width`        | `number` | equals, gt, gte, lt, lte, in               |
| `height`       | `number` | equals, gt, gte, lt, lte, in               |
| `bytes`        | `number` | equals, gt, gte, lt, lte, in               |
| `created_at`   | `string` | equals, contains, startsWith, endsWith, in |
| `asset_folder` | `string` | equals, contains, startsWith, endsWith, in |
| `display_name` | `string` | equals, contains, startsWith, endsWith, in |
| `status`       | `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).*

***

## Transformations

Path: `cloudinary.db.transformations.search`

```ts theme={null}
const rows = await corsair.cloudinary.db.transformations.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 |
| `transformation`     | `string`  | equals, contains, startsWith, endsWith, in |
| `allowed_for_strict` | `boolean` | equals                                     |
| `used`               | `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).*

***

## Triggers

Path: `cloudinary.db.triggers.search`

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

### Searchable filters

| Field         | Type      | Operators                                  |
| ------------- | --------- | ------------------------------------------ |
| `entity_id`   | `string`  | equals, contains, startsWith, endsWith, in |
| `id`          | `string`  | equals, contains, startsWith, endsWith, in |
| `uri`         | `string`  | equals, contains, startsWith, endsWith, in |
| `event_type`  | `string`  | equals, contains, startsWith, endsWith, in |
| `additive`    | `boolean` | equals                                     |
| `auth_scheme` | `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).*

***

## Upload Mappings

Path: `cloudinary.db.uploadMappings.search`

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

### Searchable filters

| Field       | Type     | Operators                                  |
| ----------- | -------- | ------------------------------------------ |
| `entity_id` | `string` | equals, contains, startsWith, endsWith, in |
| `folder`    | `string` | equals, contains, startsWith, endsWith, in |
| `template`  | `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).*

***

## Upload Presets

Path: `cloudinary.db.uploadPresets.search`

```ts theme={null}
const rows = await corsair.cloudinary.db.uploadPresets.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 |
| `unsigned`  | `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).*

***

## Usage

Path: `cloudinary.db.usage.search`

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

### Searchable filters

| Field               | Type     | Operators                                  |
| ------------------- | -------- | ------------------------------------------ |
| `entity_id`         | `string` | equals, contains, startsWith, endsWith, in |
| `plan`              | `string` | equals, contains, startsWith, endsWith, in |
| `last_updated`      | `string` | equals, contains, startsWith, endsWith, in |
| `resources`         | `number` | equals, gt, gte, lt, lte, in               |
| `derived_resources` | `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).*

***
