Tag: DataWeave 2.0
-
DataweaveVariables in DataWeave 2.0 (Mule 4)
Variables are a way to store values with a given name so they can be later reused from different parts…
November 27, 2021
-
DataweaveGlobal & Local Variables In DataWeave 2.0
We can create a global variable in the header using var directive. We need to give it a name and…
November 27, 2021
-
DataweaveLogical Operators
A logical operator is a symbol or word used to connect two or more expressions such that the value of…
November 27, 2021
-
DataweaveFlow Control
Flow control is used when you want to execute certain parts of your code in some situations, while not executing…
November 27, 2021
-
Dataweaveif else Condition in Flow Control (DataWeave 2.0)
An if statement evaluates a conditional expression and returns the value under the if only if the conditional expression returns…
November 27, 2021
-
Dataweaveelse if Condition in flow (DataWeave 2.0)
You can chain several else expressions together within an if-else construct by incorporating else if.
November 27, 2021
-
Dataweavedo statement in flow control (DataWeave 2.0)
A do statement creates a scope in which new variables, functions, annotations, or namespaces can be declared and used.
November 27, 2021
-
DataweavePattern Matching with Literal Values
A match expression contains a list of case statements that can optionally have an else statement. Each case statement consists…
November 27, 2021
-
DataweaveFunctions in DataWeave 2.0
You can define your own DataWeave functions using the fun declaration in the header of a DataWeave script.
November 27, 2021
-
DataweaveNamed Functions
We create functions in the declarations section of the script using the fun keyword. This associates a set of functionality…
November 27, 2021
-
DataweaveLambdas Function
DataWeave provides multiple ways to create functions. Just like we have named functions, we have functions without names, called lambdas.
November 27, 2021
-
DataweaveFunctions as Values
In other words, lambdas become useful when you want to pass functions as arguments to other functions, or return a…
November 27, 2021