The Google calendar plugin syncs data locally. UseDocumentation Index
Fetch the complete documentation index at: https://docs.corsair.dev/llms.txt
Use this file to discover all available pages before exploring further.
corsair.googlecalendar.db.<entity>.search({ data, limit?, offset? }) with the filters listed per entity.
New to Corsair? See database operations, data synchronization, and multi-tenancy.
Calendars
Path:googlecalendar.db.calendars.search
Searchable filters
| Field | Type | Operators |
|---|---|---|
entity_id | string | equals, contains, startsWith, endsWith, in |
id | string | equals, contains, startsWith, endsWith, in |
summary | string | equals, contains, startsWith, endsWith, in |
description | string | equals, contains, startsWith, endsWith, in |
location | string | equals, contains, startsWith, endsWith, in |
timeZone | string | equals, contains, startsWith, endsWith, in |
createdAt | date | equals, before, after, between |
.search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.
Events
Path:googlecalendar.db.events.search
Searchable filters
| Field | Type | Operators |
|---|---|---|
entity_id | string | equals, contains, startsWith, endsWith, in |
id | string | equals, contains, startsWith, endsWith, in |
htmlLink | string | equals, contains, startsWith, endsWith, in |
created | string | equals, contains, startsWith, endsWith, in |
updated | string | equals, contains, startsWith, endsWith, in |
summary | string | equals, contains, startsWith, endsWith, in |
description | string | equals, contains, startsWith, endsWith, in |
location | string | equals, contains, startsWith, endsWith, in |
colorId | string | equals, contains, startsWith, endsWith, in |
endTimeUnspecified | boolean | equals |
recurringEventId | string | equals, contains, startsWith, endsWith, in |
iCalUID | string | equals, contains, startsWith, endsWith, in |
sequence | number | equals, gt, gte, lt, lte, in |
attendeesOmitted | boolean | equals |
hangoutLink | string | equals, contains, startsWith, endsWith, in |
anyoneCanAddSelf | boolean | equals |
guestsCanInviteOthers | boolean | equals |
guestsCanModify | boolean | equals |
guestsCanSeeOtherGuests | boolean | equals |
privateCopy | boolean | equals |
locked | boolean | equals |
calendarId | string | equals, contains, startsWith, endsWith, in |
createdAt | date | equals, before, after, between |
.search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.