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
docs: clarify language in range documentation (supabase#30989)
* docs: clarify language in range documentation
- Change parameter names from start/end to from/to for consistency
- Fix incorrect offset description in notes section
* Apply suggestions from code review
---------
Co-authored-by: Charis <[email protected]>
Copy file name to clipboardExpand all lines: apps/docs/spec/supabase_py_v2.yml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -6019,9 +6019,9 @@ functions:
6019
6019
type: string
6020
6020
description: Set this to limit rows of foreign tables instead of the parent table.
6021
6021
notes: |
6022
-
Limit the query result by starting at an offset (`from`) and ending at the offset (`from + to`). Only records within this range are returned. This respects the query order and if there is no order clause the range could behave unexpectedly.
6022
+
Limit the query result by starting at an offset (`start`) and ending at the offset (`end`). Only records within this range are returned. This respects the query order and if there is no order clause the range could behave unexpectedly.
6023
6023
6024
-
The `from` and `to` values are 0-based and inclusive: `range(1, 3)` will include the second, third and fourth rows of the query.
6024
+
The `start` and `end` values are 0-based and inclusive: `range(1, 3)` will include the second, third and fourth rows of the query.
0 commit comments