map
Extract a property from each item in an array.- Category:
transform - Estimated Duration: 0s
- Capabilities:
supportsRerun
Input
Array of items to transform.
Property path to extract (dot notation).
Output
| Field | Type | Description |
|---|---|---|
results | unknown[] | Extracted values |
count | number | Number of results |
Example
filter
Filter items in an array based on a condition.- Category:
transform - Estimated Duration: 0s
- Capabilities:
supportsRerun
Input
Array to filter.
Property path to check (dot notation).
'equals' | 'not_equals' | 'contains' | 'not_contains' | 'greater_than' | 'less_than' | 'exists' | 'not_exists'Value to compare against.
Output
| Field | Type | Description |
|---|---|---|
results | unknown[] | Filtered items |
count | number | Filtered count |
originalCount | number | Original array length |

