Selector Modifiers (!, ?)
You can check for the presence of a given key.
Filter Selectors (myKey[?($ == “aValue”)]).
! returns an error if any of the specified key is missing.
Returns true if the specified key is present in the object or as an attribute of an XML element.
This example returns true because the name key does exists.
DataWeave Script:
%dw 2.0
output application/xml
—
present: payload.name?
Input JSON Payload:
{ “name”: “Annie” }
Output XML:
<?xml version=”1.0″ encoding=”UTF-8″?>
<present>true</present>
? also works with XML attributes:
DataWeave Script:
%dw 2.0
output application/json
—
{
item: {
typePresent : payload.product.@.”type”?
}
}
Input XML Payload:
<product id=”1″ type=”tv”>
<brand>Samsung</brand>
</product>
Output JSON:
{
“item”: { “typePresent”: true }
}
If you like my post please follow me to read my latest post on programming and technology.
You are given a stream of elements that is too large to fit into memory.…
The formula for the area of a circle is given by πr². Use the Monte…
Given an integer k and a string s, write a function to determine the length…
There is a staircase with N steps, and you can ascend either 1 step or…
Build an autocomplete system that, given a query string s and a set of possible…
Design a job scheduler that accepts a function f and an integer n. The scheduler…