Workflow$list_tables

Workflow$list_tables(max_results=NULL) → list<Table>

Returns a list of tables within the workflow. Only tables created by the workflow will be included (e.g., tables within datasets that have been added to the workflow will not be present).

Parameters:

max_results : int, default NULL If specified, will only return up to max_results tables

Returns:

list<Table>

Examples:

workflow <- redivis$user("imathews")$workflow("example_workflow_climate_analysis")
tables <- workflow$list_tables()

for (table in tables){
    print(table$properties) # Properties will be populated with the table.list resource representation
}

Last updated