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

Api Keys

Path: supabase.db.apiKeys.search
const rows = await corsair.supabase.db.apiKeys.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
typestringequals, contains, startsWith, endsWith, in
descriptionstringequals, 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.

Branches

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

Searchable filters

FieldTypeOperators
entity_idstringequals, contains, startsWith, endsWith, in
idstringequals, contains, startsWith, endsWith, in
refstringequals, contains, startsWith, endsWith, in
namestringequals, contains, startsWith, endsWith, in
branch_idstringequals, contains, startsWith, endsWith, in
statusstringequals, 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.

Buckets

Path: supabase.db.buckets.search
const rows = await corsair.supabase.db.buckets.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
publicbooleanequals
created_atstringequals, contains, startsWith, endsWith, in
updated_atstringequals, 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.

Functions

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

Searchable filters

FieldTypeOperators
entity_idstringequals, contains, startsWith, endsWith, in
idstringequals, contains, startsWith, endsWith, in
slugstringequals, contains, startsWith, endsWith, in
namestringequals, contains, startsWith, endsWith, in
statusstringequals, contains, startsWith, endsWith, in
versionnumberequals, 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.

Migrations

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

Searchable filters

FieldTypeOperators
entity_idstringequals, contains, startsWith, endsWith, in
versionstringequals, contains, startsWith, endsWith, in
namestringequals, contains, startsWith, endsWith, in
inserted_atstringequals, 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.

Organizations

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

Searchable filters

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

Projects

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

Searchable filters

FieldTypeOperators
entity_idstringequals, contains, startsWith, endsWith, in
idstringequals, contains, startsWith, endsWith, in
refstringequals, contains, startsWith, endsWith, in
namestringequals, contains, startsWith, endsWith, in
organization_idstringequals, contains, startsWith, endsWith, in
regionstringequals, contains, startsWith, endsWith, in
statusstringequals, contains, startsWith, endsWith, in
created_atstringequals, 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.