Meta#
Module: iqm.station_control.interface.list_with_meta
- class Meta(*, count=None, order_by=None, limit=None, offset=None, errors=None)#
Bases:
objectClass holding metadata for list return values, including pagination and query statistics.
Attributes
Total number of items existing in the storage that match the query criteria.
List of error messages encountered during the execution of the query.
Maximum number of items returned in this query response (page size).
Number of items to skip from the beginning of the result sequence.
Ordering rule applied to the queried items (e.g., "-created_timestamp" for descending).
Methods
- Parameters:
- count: int | None = None#
Total number of items existing in the storage that match the query criteria.
- order_by: str | None = None#
Ordering rule applied to the queried items (e.g., “-created_timestamp” for descending).
- limit: int | None = None#
Maximum number of items returned in this query response (page size).
If set to 0 or a negative integer, pagination is disabled and the query attempts to return all available records (matching
count - offset). Note: Disabling the limit may result in extremely heavy database and network load.
Inheritance
