Contact Us 1-800-596-4880

field

DataWeave 2.2 is compatible and bundled with Mule 4.2. This version of Mule reached its End of Life on May 2, 2023, when Extended Support ended.

Deployments of new applications to CloudHub that use this version of Mule are no longer allowed. Only in-place updates to applications are permitted.

MuleSoft recommends that you upgrade to the latest version of Mule 4 that is in Standard Support so that your applications run with the latest fixes and security enhancements.

field(Namespace | Null, String): PathElement

This function creates a PathElement data type to use for selecting an object field and populates the type’s selector field with the given string.

Some versions of the update and mask functions accept a PathElement as an argument.

Parameters

Name Description

namespace

The namespace of the field to select. If not specified, a null value is set.

name

A string that names the attribute to select.

Example

This example creates an object field selector for a specified namespace (ns0) and sets the selector’s value to "myFieldName". In the output, also note that the value of the "kind" key is "Object".

Source

 %dw 2.0
 output application/json
 import * from dw::util::Values
 ns ns0 http://acme.com/foo
 ---
 field(ns0 , "myFieldName")

Output

{
   "kind": "Object",
   "namespace": "http://acme.com/foo",
   "selector": "myFieldName"
 }