We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4f68931 + 1862243 commit cd226b7Copy full SHA for cd226b7
docs/filter-sort.md
@@ -104,6 +104,19 @@ for workbook in all_workbooks:
104
print(workbook.owner_id)
105
```
106
107
+### Setting page size
108
+
109
+Starting with version 0.32, you can set the page size for the request by using
110
+the `page_size` keyword argument. The default page size is 100 if not provided.
111
112
+```py
113
+superstore_workbooks = server.workbooks.filter(name='Superstore', page_size=10)
114
+# or
115
+all_workbooks = server.workbooks.all(page_size=1000)
116
+```
117
118
119
120
### Direction criteria - Django style
121
122
The field name can be input as normal for ascending or prefixed with `-` for descending.
0 commit comments