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