Getting started Community Training Tutorials Documentation APIs, AI & Tools
-
using: For initializing local variables in a DataWeave script. -
Unary DataWeave operators at this level:
-
.^: Schema selector. -
.#: Namespace selector. -
..: Descendants selector. -
not: Logical operator for negation. -
.@: All attribute selector, for example, in a case that uses the expressionpayload.root.a.@to return the attributes and values of the input payload<root> <a attr1="foo" attr2="bar" /></root>within the array of objects{ "attr1": "foo", "attr2": "bar" }.
-



