aito.client.AitoClient.query_entries

AitoClient.query_entries(table_name: str, offset: int = 0, limit: int = 10, select: List[str] = None) → List[Dict]

query entries of the specified table

use offset and limit for pagination

Parameters
  • table_name (str) – the name of the table

  • offset (int, optional) – the offset of the first entry, defaults to 0

  • limit (int, optional) – the number of entries to be returned, defaults to 10

  • select (List[str], optional) – specify the fields of the entry, including link fields, to be returned

Returns

the table entries

Return type

List[Dict]