corsair.agentql.db.<entity>.search({ data, limit?, offset? }) with the filters listed per entity.
New to Corsair? See database operations, data synchronization, and multi-tenancy.
Account Usage
Path:agentql.db.accountUsage.search
Searchable filters
| Field | Type | Operators |
|---|---|---|
entity_id | string | equals, contains, startsWith, endsWith, in |
updatedAt | 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.
Browser Sessions
Path:agentql.db.browserSessions.search
Searchable filters
| Field | Type | Operators |
|---|---|---|
entity_id | string | equals, contains, startsWith, endsWith, in |
sessionId | string | equals, contains, startsWith, endsWith, in |
cdpUrl | string | equals, contains, startsWith, endsWith, in |
baseUrl | string | equals, contains, startsWith, endsWith, in |
browserUaPreset | string | equals, contains, startsWith, endsWith, in |
browserProfile | string | equals, contains, startsWith, endsWith, in |
inactivityTimeoutSeconds | number | equals, gt, gte, lt, lte, in |
shutdownMode | string | equals, contains, startsWith, endsWith, in |
subUserId | string | equals, contains, startsWith, endsWith, in |
branding | boolean | equals |
browserStartupUrl | string | equals, contains, startsWith, endsWith, in |
updatedAt | 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.
Document Query Results
Path:agentql.db.documentQueryResults.search
Searchable filters
| Field | Type | Operators |
|---|---|---|
entity_id | string | equals, contains, startsWith, endsWith, in |
fileName | string | equals, contains, startsWith, endsWith, in |
query | string | equals, contains, startsWith, endsWith, in |
prompt | string | equals, contains, startsWith, endsWith, in |
generatedQuery | string | equals, contains, startsWith, endsWith, in |
requestId | string | equals, contains, startsWith, endsWith, in |
updatedAt | 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.
Query Results
Path:agentql.db.queryResults.search
Searchable filters
| Field | Type | Operators |
|---|---|---|
entity_id | string | equals, contains, startsWith, endsWith, in |
query | string | equals, contains, startsWith, endsWith, in |
prompt | string | equals, contains, startsWith, endsWith, in |
url | string | equals, contains, startsWith, endsWith, in |
generatedQuery | string | equals, contains, startsWith, endsWith, in |
requestId | string | equals, contains, startsWith, endsWith, in |
updatedAt | 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.