Module
Query result wrapper for easy data access and pagination.QueryResult
A list-like wrapper for query results that provides easy access to records and pagination. This class makes it simple to work with query results by:- Providing list-like indexing and iteration (e.g., result[0], for record in result)
- Flattening nested record structures into simple dictionaries
- Exposing pagination metadata (limit, next_starting_token, paginated)
- Offering a next_page() method to easily fetch subsequent pages