Workflow$list_notebooks
Workflow$list_notebooks(max_results=NULL) → list<Notebook>
Returns a list of notebooks within the workflow.
Parameters:
max_results
: int, default NULL
If specified, will only return up to max_results notebooks
Returns:
list<Notebook>
Examples:
workflow <- redivis$user("imathews")$workflow("example_workflow_climate_analysis")
notebooks <- workflow$list_notebooks()
for (notebook in notebooks){
print(notebook$properties) # Properties will be populated with the notebook.list resource representation
}
Last updated
Was this helpful?