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/openapi-v2-tables.json
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -710,7 +710,7 @@
710
710
"get": {
711
711
"operationId": "listTableRows",
712
712
"summary": "List Rows",
713
-
"description": "List a plain cursor page in default row order. Use the query endpoint for predicate filtering and sorting.",
713
+
"description": "List a plain cursor page in default row order. Pages are capped at 5MB by default and may contain fewer rows than the requested limit; continue until nextCursor is null. Use the query endpoint for predicate filtering and sorting.",
714
714
"tags": ["Tables"],
715
715
"parameters": [
716
716
{
@@ -1383,7 +1383,7 @@
1383
1383
"post": {
1384
1384
"operationId": "queryTableRows",
1385
1385
"summary": "Query Rows",
1386
-
"description": "Query rows with a typed predicate, ordered sort specification, and opaque cursor pagination.",
1386
+
"description": "Query rows with a typed predicate, ordered sort specification, and opaque cursor pagination. Bounded pages are capped at 5MB by default and may contain fewer rows than the requested limit; continue until nextCursor is null.",
Copy file name to clipboardExpand all lines: apps/sim/lib/api/contracts/v2/openapi/tables.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -358,7 +358,7 @@ const routes = [
358
358
operationId: 'listTableRows',
359
359
summary: 'List Rows',
360
360
description:
361
-
'List a plain cursor page in default row order. Use the query endpoint for predicate filtering and sorting.',
361
+
'List a plain cursor page in default row order. Pages are capped at 5MB by default and may contain fewer rows than the requested limit; continue until nextCursor is null. Use the query endpoint for predicate filtering and sorting.',
362
362
errors: RESOURCE_ERRORS,
363
363
success: {description: 'A page of table rows.'},
364
364
}),
@@ -619,7 +619,7 @@ const routes = [
619
619
operationId: 'queryTableRows',
620
620
summary: 'Query Rows',
621
621
description:
622
-
'Query rows with a typed predicate, ordered sort specification, and opaque cursor pagination.',
622
+
'Query rows with a typed predicate, ordered sort specification, and opaque cursor pagination. Bounded pages are capped at 5MB by default and may contain fewer rows than the requested limit; continue until nextCursor is null.',
623
623
errors: RESOURCE_ERRORS,
624
624
success: {description: 'A page of matching table rows.'},
0 commit comments