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

Conference Records

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

Searchable filters

FieldTypeOperators
entity_idstringequals, contains, startsWith, endsWith, in
namestringequals, contains, startsWith, endsWith, in
spacestringequals, contains, startsWith, endsWith, in
fixedExternalMeetingIdstringequals, contains, startsWith, endsWith, in
startTimestringequals, contains, startsWith, endsWith, in
endTimestringequals, contains, startsWith, endsWith, in
expireTimestringequals, contains, startsWith, endsWith, in
createdAtdateequals, before, after, between
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.

Participants

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

Searchable filters

FieldTypeOperators
entity_idstringequals, contains, startsWith, endsWith, in
namestringequals, contains, startsWith, endsWith, in
startTimestringequals, contains, startsWith, endsWith, in
endTimestringequals, contains, startsWith, endsWith, in
createdAtdateequals, before, after, between
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.

Recordings

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

Searchable filters

FieldTypeOperators
entity_idstringequals, contains, startsWith, endsWith, in
namestringequals, contains, startsWith, endsWith, in
startTimestringequals, contains, startsWith, endsWith, in
endTimestringequals, contains, startsWith, endsWith, in
createdAtdateequals, before, after, between
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.

Smart Notes

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

Searchable filters

FieldTypeOperators
entity_idstringequals, contains, startsWith, endsWith, in
namestringequals, contains, startsWith, endsWith, in
startTimestringequals, contains, startsWith, endsWith, in
endTimestringequals, contains, startsWith, endsWith, in
createdAtdateequals, before, after, between
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.

Spaces

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

Searchable filters

FieldTypeOperators
entity_idstringequals, contains, startsWith, endsWith, in
namestringequals, contains, startsWith, endsWith, in
meetingUristringequals, contains, startsWith, endsWith, in
meetingCodestringequals, contains, startsWith, endsWith, in
createdAtdateequals, before, after, between
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.

Transcripts

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

Searchable filters

FieldTypeOperators
entity_idstringequals, contains, startsWith, endsWith, in
namestringequals, contains, startsWith, endsWith, in
startTimestringequals, contains, startsWith, endsWith, in
endTimestringequals, contains, startsWith, endsWith, in
createdAtdateequals, before, after, between
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.