# Workflow$list\_transforms

### Workflow$<mark style="color:purple;">list\_transforms</mark>(*max\_results=NULL*) → list<[Transform](https://docs.redivis.com/api/client-libraries/redivis-r/reference/transform)>

Returns a list of transforms within the workflow.

### **Parameters:**

**`max_results` :&#x20;*****int, default NULL***\
If specified, will only return up to max\_results transforms

### **Returns:**&#x20;

**list<**[**Transform**](https://docs.redivis.com/api/client-libraries/redivis-r/reference/transform)**>**

### **Examples:**

```r
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
}
```
