aito.api.query_all_entries

aito.api.query_all_entries(client: AitoClient, table_name: str, select: List[str] = None, batch_size: int = 5000) List[Dict]

query all entries of the specified table

Parameters:
  • client (AitoClient) – the AitoClient instance

  • table_name (str) – the name of the table

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

  • batch_size (int, optional) – the number of entries to be queried at once, defaults to 5000

Returns:

list of all entries in the table

Return type:

List[Dict]