Tag: DataWeave 2.0
-
DataweaveMultipart Format (Form Data)
DataWeave supports Multipart subtypes, in particular form-data. These formats enable you to handle several different data parts in a single…
November 18, 2021
-
DataweaveText Plain Format
The simplest way to store information in computer memory is as a single file with a plain text format.
November 18, 2021
-
DataweaveText Java Properties Format
The Text Java Properties format parses any Java properties file. This format represents simple key-value pairs. DataWeave represents these pairs…
November 18, 2021
-
DataweaveSCRIPT ANATOMY
Notice in the script that there are three lines, a line with three dashes, then one more line. The first…
November 19, 2021
-
DataweaveCreating Data
As you'd expect, the last two are actually composite types, their contents also have type definitions:
November 20, 2021
-
DataweaveReading Data
reading data is just as important, and the features available to do so are just as robust.
November 21, 2021
-
DataweaveSingle-Value Selector
The single-value selector (.) allows you to lookup Object values by their key.
November 21, 2021
-
DataweaveMulti-Value Selector (.*)
The multi-value selector (.*) returns an Array containing any value that matches the key. The values returned are dependent on…
November 21, 2021
-
DataweaveDescendants Selector (..)
The descendants selector (..) is the perfect tool to use when you need the values for a certain key no…
November 21, 2021
-
DataweaveKey-Value Pair Selector (.&myKey)
The & selector acts on arrays and objects. & retrieves both the keys and values of all matching keys pairs…
November 21, 2021
-
DataweaveIndex Selector ([])
The index selector returns the element at the specified position. It can be applied over an array, object, or string.
November 21, 2021
-
DataweaveRange selector (anIndex to anotherIndex)
If you need multiple sequential values from an Array, DataWeave allows you to select a range of values with the…
November 21, 2021