Skip to content
Snippets Groups Projects

ENH: new `page_length` parameter for execute_query

Merged Timm Fitschen requested to merge f-query-paging into dev
All threads resolved!
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
+ 2
2
@@ -4391,7+4391,7 @@
Whether to use the server-side query cache (equivalent to adding a
"cache" flag) to the Query object. Defaults to True.
page_length : int
Whether to use paging. If page_length > 0 this method returns a
generator (to be used in a for-loop or with list-comprehension).
The generator yields containers with up to page_length entities.
Otherwise, paging is disabled, as well as for count queries and
@@ -4480,7+4480,7 @@
Whether an exception should be raised when there are errors in the
resulting entities. Defaults to True.
cache : bool
Whether to use the query cache (equivalent to adding a "cache" flag).
Defaults to True.
Whether to use the query server-side cache (equivalent to adding a
"cache" flag). Defaults to True.
flags : dict of str
Flags to be added to the request.
page_length : int
Loading