Skip to main content

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.

The Airtable plugin syncs data locally. Use corsair.airtable.db.<entity>.search({ data, limit?, offset? }) with the filters listed per entity.

Bases

Path: airtable.db.bases.search
const rows = await corsair.airtable.db.bases.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
permissionLevelstringequals, 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.

Records

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

Searchable filters

FieldTypeOperators
entity_idstringequals, contains, startsWith, endsWith, in
idstringequals, contains, startsWith, endsWith, in
createdTimestringequals, contains, startsWith, endsWith, in
baseIdstringequals, contains, startsWith, endsWith, in
tableIdstringequals, 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.