%dw 2.0
output application/json
---
{ "valuesOf" : valuesOf({a: true, b: 1}) }
DataWeave
valuesOf
valuesOf({ (K)?: V }): Array<V>
Returns an array of the values from key-value pairs in an object.
Introduced in DataWeave 2.3.0. Supported by Mule 4.3 and later.
Parameters
Name | Description |
---|---|
|
The object to evaluate. |
Example
This example returns the values of key-value pairs within the input object.
Source
Output
{ "valuesOf" : [true,1] }
JSON