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.
Currently the
Generatorreturned 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 artifactsetc.) the Python API should usecountandoffsetto paginate the query into smaller results.