Tag: DataWeave 2.0
-
DataweaveInfix Notation
This type of notation is referred to as infix since the operator is in between the two operands that it…
November 27, 2021
-
Dataweave$, $$, $$$ Syntax
For functions that DataWeave provides, you can represent the first, second, and third arguments of the passed lambda as $,…
November 27, 2021
-
DataweaveArrays (dw::core::Arrays)
DataWeave 2.0 makes it easier to define an array with a range (" to ").
November 28, 2021
-
DataweaveThe filter Function (and Function Type Signatures) In DataWeave Mule 4
This function can be applied to an array. It iterates the array and matches the values with the expression. The…
November 28, 2021
-
DataweaveThe map Function In DataWeave Mule 4
Iterates over items in an array and outputs the results into a new array.
November 28, 2021
-
DataweaveThe distinctBy Function In DataWeave Mule 4
This function is useful for when you need to remove duplicate items from an Array.
November 28, 2021
-
DataweaveThe groupBy Function In DataWeave Mule 4
This function is useful for grouping together items in an array based on some value that is generated from each…
November 28, 2021
-
DataweaveThe reduce Function In DataWeave Mule 4
Reduce function is used to do any computation while iterating on an array, so the computation result is not lost…
November 29, 2021
-
DataweaveWorking with Objects
It processes both keys and values as a tuple.
November 30, 2021
-
DataweavefilterObject function in DataWeave 2.0 (mulesoft)
The filterObjectoperator iterates over a list of key-value pairs in an object and applies an expression that returns only matching…
November 30, 2021
-
DataweavemapObject function in DataWeave 2.0 (mulesoft)
We use mapObject when we want to change the keys and/or values on an Object to be something else.
December 1, 2021
-
Dataweavepluck function in DataWeave 2.0 (mulesoft)
The pluck operator is useful for mapping the object into the array, and it returns the array of values, keys,…
December 2, 2021