corsair.instagram.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:instagram.db.comments.search
Searchable filters
| Field | Type | Operators |
|---|---|---|
entity_id | string | equals, contains, startsWith, endsWith, in |
id | string | equals, contains, startsWith, endsWith, in |
text | string | equals, contains, startsWith, endsWith, in |
timestamp | string | equals, contains, startsWith, endsWith, in |
username | 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.
Conversations
Path:instagram.db.conversations.search
Searchable filters
| Field | Type | Operators |
|---|---|---|
entity_id | string | equals, contains, startsWith, endsWith, in |
conversationId | string | equals, contains, startsWith, endsWith, in |
pageId | string | equals, contains, startsWith, endsWith, in |
createdAt | 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.
Media
Path:instagram.db.media.search
Searchable filters
| Field | Type | Operators |
|---|---|---|
entity_id | string | equals, contains, startsWith, endsWith, in |
id | string | equals, contains, startsWith, endsWith, in |
username | string | equals, contains, startsWith, endsWith, in |
media_url | string | equals, contains, startsWith, endsWith, in |
createdAt | date | equals, before, after, between |
caption | 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.
Messages
Path:instagram.db.messages.search
Searchable filters
| Field | Type | Operators |
|---|---|---|
entity_id | string | equals, contains, startsWith, endsWith, in |
messageId | string | equals, contains, startsWith, endsWith, in |
conversationId | string | equals, contains, startsWith, endsWith, in |
senderId | string | equals, contains, startsWith, endsWith, in |
recipient | string | equals, contains, startsWith, endsWith, in |
senderName | string | equals, contains, startsWith, endsWith, in |
message | string | equals, contains, startsWith, endsWith, in |
createdAt | string | equals, contains, startsWith, endsWith, in |
updatedAt | 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.
Users
Path:instagram.db.users.search
Searchable filters
| Field | Type | Operators |
|---|---|---|
entity_id | string | equals, contains, startsWith, endsWith, in |
id | string | equals, contains, startsWith, endsWith, in |
ig_id | number | equals, gt, gte, lt, lte, in |
username | string | equals, contains, startsWith, endsWith, in |
name | string | equals, contains, startsWith, endsWith, in |
biography | string | equals, contains, startsWith, endsWith, in |
profile_picture_url | string | equals, contains, startsWith, endsWith, in |
followers_count | number | equals, gt, gte, lt, lte, in |
follows_count | number | equals, gt, gte, lt, lte, in |
media_count | number | equals, gt, gte, lt, lte, in |
website | string | equals, contains, startsWith, endsWith, in |
createdAt | date | equals, before, after, between |
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.