You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/docs/content/docs/en/integrations/convex.mdx
+5-3Lines changed: 5 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,8 @@ Sim's Convex integration connects your workflows to any Convex deployment with t
28
28
-**Inspect your data model:** List Tables returns every table in the deployment with the JSON schema of its documents.
29
29
-**Export and sync data:** List Documents pages through a consistent snapshot of a table, and Document Deltas returns only the documents that changed since a snapshot — including deletions — making incremental syncs to warehouses, search indexes, or other tools straightforward.
30
30
31
+
The Run Query, Run Mutation, Run Action, and Run Function operations work on every Convex plan. List Tables, List Documents, and Document Deltas use Convex's streaming export API, which is available on Convex paid plans.
32
+
31
33
Typical patterns include agents that read and write application data through your existing Convex functions, scheduled exports to analytics destinations, and change-driven automations that react to new or updated documents.
32
34
{/* MANUAL-CONTENT-END */}
33
35
@@ -122,7 +124,7 @@ Run any Convex function (query, mutation, or action) by path without specifying
122
124
123
125
### `convex_list_tables`
124
126
125
-
List all tables in a Convex deployment along with their JSON schemas
127
+
List all tables in a Convex deployment along with their JSON schemas. Requires streaming export, available on Convex paid plans.
126
128
127
129
#### Input
128
130
@@ -140,7 +142,7 @@ List all tables in a Convex deployment along with their JSON schemas
140
142
141
143
### `convex_list_documents`
142
144
143
-
List documents from a Convex table via a paginated snapshot. Pass the returned snapshot and page cursor back in to fetch the next page.
145
+
List documents from a Convex table via a paginated snapshot. Pass the returned snapshot and page cursor back in to fetch the next page. Requires streaming export, available on Convex paid plans.
144
146
145
147
#### Input
146
148
@@ -163,7 +165,7 @@ List documents from a Convex table via a paginated snapshot. Pass the returned s
163
165
164
166
### `convex_document_deltas`
165
167
166
-
List documents that changed after a snapshot or previous delta cursor. Deleted documents are returned with a _deleted flag.
168
+
List documents that changed after a snapshot or previous delta cursor. Deleted documents are returned with a _deleted flag. Requires streaming export, available on Convex paid plans.
Copy file name to clipboardExpand all lines: apps/sim/lib/integrations/integrations.json
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -3224,15 +3224,15 @@
3224
3224
},
3225
3225
{
3226
3226
"name": "List Tables",
3227
-
"description": "List all tables in a Convex deployment along with their JSON schemas"
3227
+
"description": "List all tables in a Convex deployment along with their JSON schemas. Requires streaming export, available on Convex paid plans."
3228
3228
},
3229
3229
{
3230
3230
"name": "List Documents",
3231
-
"description": "List documents from a Convex table via a paginated snapshot. Pass the returned snapshot and page cursor back in to fetch the next page."
3231
+
"description": "List documents from a Convex table via a paginated snapshot. Pass the returned snapshot and page cursor back in to fetch the next page. Requires streaming export, available on Convex paid plans."
3232
3232
},
3233
3233
{
3234
3234
"name": "Document Deltas",
3235
-
"description": "List documents that changed after a snapshot or previous delta cursor. Deleted documents are returned with a _deleted flag."
3235
+
"description": "List documents that changed after a snapshot or previous delta cursor. Deleted documents are returned with a _deleted flag. Requires streaming export, available on Convex paid plans."
'List documents that changed after a snapshot or previous delta cursor. Deleted documents are returned with a _deleted flag.',
16
+
'List documents that changed after a snapshot or previous delta cursor. Deleted documents are returned with a _deleted flag. Requires streaming export, available on Convex paid plans.',
'List documents from a Convex table via a paginated snapshot. Pass the returned snapshot and page cursor back in to fetch the next page.',
14
+
'List documents from a Convex table via a paginated snapshot. Pass the returned snapshot and page cursor back in to fetch the next page. Requires streaming export, available on Convex paid plans.',
0 commit comments