Skip to main content
The Dropbox plugin syncs data locally. Use corsair.dropbox.db.<entity>.search({ data, limit?, offset? }) with the filters listed per entity.

Files

Path: dropbox.db.files.search
const rows = await corsair.dropbox.db.files.search({
    data: { /* filters below */ },
    limit: 100,
    offset: 0,
});

Searchable filters

FieldTypeOperators
entity_idstringequals, contains, startsWith, endsWith, in
idstringequals, contains, startsWith, endsWith, in
namestringequals, contains, startsWith, endsWith, in
path_lowerstringequals, contains, startsWith, endsWith, in
path_displaystringequals, contains, startsWith, endsWith, in
sizenumberequals, gt, gte, lt, lte, in
is_downloadablebooleanequals
server_modifieddateequals, before, after, between
client_modifieddateequals, before, after, between
content_hashstringequals, contains, startsWith, endsWith, in
revstringequals, 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.

Folders

Path: dropbox.db.folders.search
const rows = await corsair.dropbox.db.folders.search({
    data: { /* filters below */ },
    limit: 100,
    offset: 0,
});

Searchable filters

FieldTypeOperators
entity_idstringequals, contains, startsWith, endsWith, in
idstringequals, contains, startsWith, endsWith, in
namestringequals, contains, startsWith, endsWith, in
path_lowerstringequals, contains, startsWith, endsWith, in
path_displaystringequals, 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.