Project$list_tables

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

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

Parameters:

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

Returns:

list<Table>

Examples:

project <- redivis::user("imathews")$project("example_project_climate_analysis")
tables <- project$list_tables()

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

Last updated