-
Notifications
You must be signed in to change notification settings - Fork 0
Labels
Milestone
Description
Currently the Generator
returned when getting results with the low-level API serves little purpose as it retrieves ALL data and then just yields the complete response. Instead so as to reduce the time taken by the server to process large requests from the database (i.e. SELECT * FROM artifacts
etc.) the Python API should use count
and offset
to paginate the query into smaller results.