A list of tables in the database
table_list = client.raw.tables.list("db1", limit=5) for table in client.raw.tables(db_name="db1"): table # do something with the table for table_list in client.raw.tables(db_name="db1", chunk_size=2500): table_list # do something with the tables
{- "items": [
- {
- "name": "string"
}
], - "nextCursor": "string"
}