corsair.todoist.db.<entity>.search({ data, limit?, offset? }) with the filters listed per entity.
New to Corsair? See database operations, data synchronization, and multi-tenancy.
Comments
Path:todoist.db.comments.search
Searchable filters
| Field | Type | Operators |
|---|---|---|
entity_id | string | equals, contains, startsWith, endsWith, in |
id | string | equals, contains, startsWith, endsWith, in |
task_id | string | equals, contains, startsWith, endsWith, in |
project_id | string | equals, contains, startsWith, endsWith, in |
content | string | equals, contains, startsWith, endsWith, in |
posted_at | string | equals, contains, startsWith, endsWith, in |
.search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.
Labels
Path:todoist.db.labels.search
Searchable filters
| Field | Type | Operators |
|---|---|---|
entity_id | string | equals, contains, startsWith, endsWith, in |
id | string | equals, contains, startsWith, endsWith, in |
name | string | equals, contains, startsWith, endsWith, in |
color | string | equals, contains, startsWith, endsWith, in |
order | number | equals, gt, gte, lt, lte, in |
favorite | boolean | equals |
.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:todoist.db.projects.search
Searchable filters
| Field | Type | Operators |
|---|---|---|
entity_id | string | equals, contains, startsWith, endsWith, in |
id | string | equals, contains, startsWith, endsWith, in |
name | string | equals, contains, startsWith, endsWith, in |
color | string | equals, contains, startsWith, endsWith, in |
parent_id | string | equals, contains, startsWith, endsWith, in |
order | number | equals, gt, gte, lt, lte, in |
favorite | boolean | equals |
comment_count | number | equals, gt, gte, lt, lte, in |
is_shared | boolean | equals |
is_archived | boolean | equals |
is_favorite | boolean | equals |
view_style | string | equals, contains, startsWith, endsWith, in |
.search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.
Reminders
Path:todoist.db.reminders.search
Searchable filters
| Field | Type | Operators |
|---|---|---|
entity_id | string | equals, contains, startsWith, endsWith, in |
id | string | equals, contains, startsWith, endsWith, in |
task_id | string | equals, contains, startsWith, endsWith, in |
notify_uid | string | equals, contains, startsWith, endsWith, in |
.search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.
Sections
Path:todoist.db.sections.search
Searchable filters
| Field | Type | Operators |
|---|---|---|
entity_id | string | equals, contains, startsWith, endsWith, in |
id | string | equals, contains, startsWith, endsWith, in |
project_id | string | equals, contains, startsWith, endsWith, in |
name | string | equals, contains, startsWith, endsWith, in |
order | number | equals, gt, gte, lt, lte, in |
.search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.
Tasks
Path:todoist.db.tasks.search
Searchable filters
| Field | Type | Operators |
|---|---|---|
entity_id | string | equals, contains, startsWith, endsWith, in |
id | string | equals, contains, startsWith, endsWith, in |
project_id | string | equals, contains, startsWith, endsWith, in |
section_id | string | equals, contains, startsWith, endsWith, in |
content | string | equals, contains, startsWith, endsWith, in |
description | string | equals, contains, startsWith, endsWith, in |
is_completed | boolean | equals |
parent_id | string | equals, contains, startsWith, endsWith, in |
order | number | equals, gt, gte, lt, lte, in |
priority | number | equals, gt, gte, lt, lte, in |
url | string | equals, contains, startsWith, endsWith, in |
comment_count | number | equals, gt, gte, lt, lte, in |
created_at | string | equals, contains, startsWith, endsWith, in |
creator_id | string | equals, contains, startsWith, endsWith, in |
assignee_id | string | equals, contains, startsWith, endsWith, in |
assigner_id | string | equals, contains, startsWith, endsWith, in |
.search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.