tdk table list
List all tables in a collection
tdk table list \
--proj quickstart \
--coll sales_data \
--name country \
--at 2024-05-20T10:00:00Z \
--at-trx trx-8c1d40 \
--format table \
--max-result 100
| Flag | Type | Required | Description |
|---|---|---|---|
--proj, -P | string | Optional | Project to target; overrides the pinned project. Prompted for when a command needs one and neither is set. |
--coll, -c | string | Optional | Name of the collection to which the tables belong. |
--name, -n | string | Optional | A name wildcard to match for the list. For example, 'my_table*' will match all tables starting with 'my_table'. |
--at | string | Optional | If provided, the table values at the given time will be shown. Must be either a valid timestamp in the form of a unix timestamp (milliseconds since epoch without a dot, e.g. '1750074554472') or a valid date-time format. The valid formats are 'YYYY-MM-DD', 'YYYY-MM-DDTHH', 'YYYY-MM-DDTHH:MM', 'YYYY-MM-DDTHH:MM:SS', and 'YYYY-MM-DDTHH:MM:SS.sss'. A 'Z' character can be added at the end to indicate UTC time (e.g., '2023-10-01T12Z' or '2023-10-01T12:00:00.000Z') or it can be omitted to indicate local time (e.g., '2023-10-01T12' or '2023-10-01T12:00:00.000'). NOTE: This argument is mutually exclusive with arguments: [at-trx]. |
--at-trx | string | Optional | ID of a transaction. If provided, the table values at the end of the given transaction will be shown. NOTE: This argument is mutually exclusive with arguments: [at]. |
-o, --format | table | json | yaml | Optional | Output format. Defaults to table. |
--max-result | string | Optional | Maximum number of rows to list. Use 0 for no limit. Defaults to 100. |