corsair.dropbox.db.<entity>.search({ data, limit?, offset? }) with the filters listed per entity.
New to Corsair? See database operations, data synchronization, and multi-tenancy.
Files
Path:dropbox.db.files.search
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 |
path_lower | string | equals, contains, startsWith, endsWith, in |
path_display | string | equals, contains, startsWith, endsWith, in |
size | number | equals, gt, gte, lt, lte, in |
is_downloadable | boolean | equals |
server_modified | date | equals, before, after, between |
client_modified | date | equals, before, after, between |
content_hash | string | equals, contains, startsWith, endsWith, in |
rev | string | equals, contains, startsWith, endsWith, in |
.search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.
Folders
Path:dropbox.db.folders.search
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 |
path_lower | string | equals, contains, startsWith, endsWith, in |
path_display | string | equals, contains, startsWith, endsWith, in |
.search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.